        .top-bar {
            background-color: #369A40;
            padding: 13px 0;
        }
        
        .top-bar ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        
        .top-bar .right-side ul {
            gap: 29px;
        }
        
        .top-bar .right-side {
            display: flex;
            justify-content: flex-end;
        }
        
        .top-bar ul li a {
            font-size: 16px;
            color: #fff;
            text-decoration: none;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .top-bar ul li img {
            margin: 0 10px 0 0;
        }
        
        header {
            padding: 9px 0;
            background-color: #fff;
            transition: 0.5s;
        }
        
        header.element-is-sticky {
            z-index: 99 !important;
        }
        
        header input#wp-block-search__input-1 {
            border: 1px solid #E6E6E6;
            border-radius: 50px;
            width: 100%;
            padding: 10px 31px;
            font-size: 12px;
            color: #000;
            background-image: url(../img/search.svg);
            background-repeat: no-repeat;
            background-size: auto;
            background-position: 92% 50%;
            outline: none;
        }
        
        header svg.wc-block-mini-cart__icon path {
            fill: #369A40;
        }
        
        header .wc-block-mini-cart__icon {
            color: #75C021;
        }
        
        header input#wp-block-search__input-1.active {
            background-image: none;
        }
        
        header input#wp-block-search__input-1::placeholder {
            font-size: 12px;
            font-family: 'Poppins', sans-serif;
            color: #000;
            opacity: 1;
        }
        
        header .top-menu-head {
            display: flex;
            justify-content: center;
            height: 100%;
            align-items: center;
        }
        
        .search-and-cart {
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
        }
        
        .search-and-cart button.wp-block-search__button.wp-element-button {
            display: none;
        }
        
        .black-menu {
            background-color: rgba(0, 0, 0, 66%);
            position: absolute;
            z-index: 9;
            width: 100%;
        }
        
        .black-menu #mega-menu-wrap-menu-1 {
            background: transparent;
        }
        
        .black-menu-head {
            display: flex;
            justify-content: center;
        }
        
        .mega-sub-menu #mega-menu-106-0-0 {
            border-bottom: 5px solid #000;
        }
        
        #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link,
        #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link::before {
            position: absolute;
            content: "";
            background: #369A40;
            width: 34%;
            height: 7px;
            left: 15%;
            top: 100%;
            transform: translate(-50%, -50%);
            transition: 0.3s;
            opacity: 0;
        }
        
        #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item.active>a.mega-menu-link::before {
            opacity: 1;
            left: 17%;
        }
        
        header .top-menu-head #mega-menu-wrap-max_mega_menu_1 {
            background-color: transparent !important;
        }
        
        .mega-menu-item-has-children .mega-sub-menu li:after {
            position: absolute;
            content: "";
            background: #369A40;
            width: 34%;
            height: 7px;
            left: 15%;
            top: 100%;
            transform: translate(-50%, -50%);
            transition: 0.3s;
        }
        
        #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu .mega-current-menu-item a {
            color: #369A40 !important;
        }

         .woocommerce-shop .innerbanner {
			 background-image: url('/wp-content/uploads/2025/01/banner.jpg') !important;
}
        .innerbanner {
            background-image: url('../img/inner.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 345px;
            padding-top: 135px;
            text-align: center;
            position: relative;
            background-position: center;
        }
        
        .innerbanner::before {
            position: absolute;
            content: "";
            background-color: rgba(0, 0, 0, 40%);
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
        }
        
        .innerbanner .title h1 {
            color: #fff;
            font-size: 40px;
            position: relative;
            font-weight: 700;
            text-transform: capitalize;
        }
        
        .mob_menu {
            display: none;
        }
        /*loader*/
        
        #page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            opacity: 1;
            visibility: visible;
        }
        
        #page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        #page-loader .loader {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        #page-loader .loader .spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-top: 4px solid #369A40;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
        }
        
        #page-loader .loader p {
            font-size: 16px;
            color: #555;
            margin: 10px 0 0 0;
            font-weight: 500;
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @media only screen and (max-width: 991px) {
            .top-bar ul li a {
                font-size: 12px;
            }
            .top-bar ul li img {
                margin: 0 3px 0 0;
            }
            .top-bar .right-side ul {
                gap: 12px;
            }
            header .changeorder {
                order: 3;
            }
            header .top-menu-head {
                justify-content: flex-end;
            }
            header .top-menu-head {
                display: none;
            }
            #mega-menu-wrap-menu-1 .mega-menu-toggle+#mega-menu-menu-1 {
                padding: 10px 0px;
            }
            #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
                padding: 0 6px;
                font-size: 12px;
                line-height: inherit;
                height: auto;
            }
        }
        
        @media only screen and (max-width: 767px) {
            .top-bar ul li a {
                font-size: 10px;
            }
            #mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
                background: #369A40;
                border-radius: 5px;
            }
            .black-menu {
                display: none;
            }
            .mob_menu {
                display: block;
                position: absolute;
                top: 200px;
                width: 100%;
                right: 0;
            }
            #mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle+#mega-menu-max_mega_menu_4 {
                background: #fff;
            }
            #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4>li.mega-menu-item>a.mega-menu-link {
                color: #000;
            }
            #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
            #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
            #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
                background: #369A40;
            }
            #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link,
            #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
                margin: 0px 0px 9px 0px;
                padding: 0px 0px 4px 0px;
                font-size: 12px;
                border-bottom: 1px solid #b3daba;
            }
            #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
                padding: 6px 9px;
                font-size: 14px;
                background: #369a40;
                margin: 5px 0;
            }
            #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
                padding: 0;
            }
            .black-menu-head {
                display: unset;
            }
            .top-bar ul {
                justify-content: center;
            }
            .top-bar .right-side {
                display: flex;
                justify-content: center;
                padding-top: 5px;
            }
            header .logo {
                text-align: center;
            }
        }