@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* ===== import another css file ===== */
@import url(./pages/log_reg.css);
@import url(./pages/blog.css);
@import url(./pages/single_blog.css);
@import url(./pages/product_page.css);
@import url(./pages/shop.css);
@import url(./pages/categories.css);
@import url(./pages/contact.css);
@import url(./pages/stores.css);
@import url(./pages/single_store.css);
@import url(./pages/wishlist.css);
@import url(./pages/cart.css);
@import url(./pages/checkout.css);
@import url(./pages/faq.css);
@import url(./pages/aboutUs.css);
@import url(./pages/order_track.css);
@import url(./pages/dashboard/dashboard.css);
@import url(./not_found.css);


@import url(./responsive.css);

:root{
    --primary: #D42D2A;
    --primary_rgba: 212, 45, 42;
    /* --primary: #007bff; */
    /* --primary_rgba: 0, 123, 255; */
    --secondary: #919199;
    --secondary_rgb: 145, 145, 153;
    --white:#ffffff;
    --black: 0,0,0;
    --btn_hvr: 212, 45, 42;
    --blue: 13, 104, 226;
    --yellow:#dc8a0f;
    --yellow_rgb:220, 138, 15;
    --green: #00bc65;
    --green_rgb: 0, 188, 101;
    --red:#ff0033;
    --red_rgb:255, 0, 51;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
a{
    text-decoration: none;
}
ol,ul,menu{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6,p{
    line-height: .8;
    margin: 0;
}

/* ===================common css==================== */
/* ===============headers ================= */
.header3{
    font-family: var(--header_family);
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 30px;
    color: rgb(var(--black));
}


 /* ===============section space============= */
 .required_field{
    color: var(--red);
 }
 #specific_item_catagory{
    padding: 60px 0 30px;
 }
 #offers,
 #today_deal,
 #latest_product,
 #adverise,
 #women_product, 
 #recommend,
 #men_product, #top_rated, #brand,#outdoor_sports,#advertise3,#blog {
    padding: 30px 0;
 }
 /* =============section card for evety section================ */
 .today_deal_wrapper,
 .latest_product_wrapper,
 .women_product_wrapper,
 .men_product_wrapper,
 .outdoor_sports_wrapper,
 .top_rated_product_wrapper,
 .recommend_product_wrapper,
 .brand_wrapper,
 .blog_section_wrapper{
    padding: 40px 20px;
    background: var(--white);
    box-shadow: 0px 0px 5px 0px rgba(var(--black),0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
 /* ================section header for every section======= */
.section_header{
    padding: 0 120px 40px 0;
}
.section_header a{
    position: relative;
    font-family: var(--link_family);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: var(--secondary);
    text-transform: capitalize;

}
.section_header a:hover{
    color: var(--primary);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
.section_header a::after{
    position: absolute;
    content: "";
    bottom: 0;
    left: -100%;
    visibility: hidden;
    height: 2px;
    width: 100%;
    background: var(--primary);
}
.section_header a:hover::after{
    left: 0;
    visibility: visible;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.show-more-btn{
    border: none;
    color: var(--primary);
    background: transparent;
    text-decoration: underline;
    display: block;
    text-align: start;
}

/* ============check button for every page ============ */
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ========common product card============= */
.product_slider .prev i,.product_slider .next i{
    z-index: 10;
    color: rgb(var(--black));
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    cursor: pointer;
    transition: all linear .3s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.product_slider .prev i:hover,.product_slider .next i:hover {
    background: var(--primary);
    opacity: 1;
    color: var(--white);
}
.product_slider .prev{
    position: absolute;
    right: 60px;
    top: 35px;
   
}
.product_slider .next{
    position: absolute;
    right: 10px;
    top: 35px;

}
.product_wrapper{
    padding: 0 20px;
}
.product_wrapper .product-card {
    height: auto;
    overflow: hidden;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(var(--secondary_rgb),.2);
    position: relative;
    transition: transform 0.3s ease;
    margin: 5px;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
.product_wrapper .product-card:hover{
    border: 1px solid var(--primary);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
/* Product Image */
.product_wrapper .product-card .product-image {
    width: 100%;
    /*height: 200px;
    */border: 1px solid rgba(var(--secondary_rgb),.2);
    aspect-ratio: 4/5;
    max-height: 250px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
}

.product_wrapper .product-card .product-image img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: fill;
    transition: all linear .3s;
}

.product_wrapper .product-card:hover img {
    transform: scale(1.2);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

/* Product Info */
.product_wrapper .product-card .product-info {
    padding: 15px;
    text-align: center;
}
.product_wrapper .product-card .product-info .product_cat{
    background: var(--yellow);
    color: var(--secondary);
    text-transform: capitalize;
    padding: 2px 4px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.product_wrapper .product-card .product-info .rating{
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_wrapper .product-card .product-info .rating .star i{
    color: var(--yellow);
    font-size: 12px;
}
.product_wrapper .product-card .product-info .rating span{
    color: var(--secondary);
}
.product_wrapper .product-card .product-info .review:hover{
    color: var(--primary);
}
.product_wrapper .product-card .product-info .product-name {
    height: 40px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 10px;
}
.product_wrapper .product-card .product-info .product-name:hover{
    color: var(--primary);
}

.product_wrapper .product-card .product-info .product-price {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
   height: 50px;
}
.product_wrapper .product-card .product-info .product-price .original-price {
    text-decoration: line-through;
    font-size: 14px;
    color: #999;
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
}
.product_wrapper .product-card .product-info .discount {
    position: absolute;
    padding: 7px;
    top: 10px;
    left: 20px;
    font-size: 10px;
    background: var(--primary);
    color: var(--white);
    margin: 10px 0;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.product_wrapper .product-card .product-info .card-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.product_wrapper .product-card .product-info .card-btn:hover {
    background: var(--yellow);
}
.product_wrapper .product-card .wishlist_compare{
    visibility: hidden;
    top: 50px;
    right: 5px;
}
.product_wrapper .product-card:hover .wishlist_compare{
    top: 10px;
    visibility: visible;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
.product_wrapper .product-card:hover .wishlist_compare button{
    background: var(--white);
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}
.product_wrapper .product-card:hover .wishlist_compare button:hover{
    background: var(--primary);
    color: var(--white);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}

/* ===============header section================ */
#header .top_header{ 
    background: rgba(var(--secondary_rgb), 0.1)
}
#header .top_header .phone{ 
    color: var(--secondary);
    font-size: 12px;
}
#header .top_header .phone:hover{
    color: var(--primary);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
#header .top_header .dropdown button,
.mobile_nav .dropdown button{
    color: var(--secondary);
    font-size: 12px;
    outline: none;
    border:  none;
 }
 #header .top_header .dropdown .dropdown-menu,
 .mobile_nav .dropdown .dropdown-menu {
    min-width: 80px;
}
#header .top_header .dropdown .dropdown-item,
.mobile_nav .dropdown .dropdown-item{
    color:  var(--secondary); 
    font-size: 12px;
}
#header .main_header{
    height: 90px;
    padding: 25px 0;
    z-index: 999;
}
#header .main_header .search_bar form input{
   border: 1px solid rgba(var(--secondary_rgb),.2);
   padding-right: 40px;
   height: 40px;
}
#header .main_header .search_bar form input:focus{
    border: 1px solid var(--primary);
}
#header .main_header .search_bar form input::placeholder{
    color: var(--secondary);
}
#header .main_header .search_bar form .search_bnt{
    color: var(--secondary);
    right: 24px;
    top: 3px;
    border: none;
}
#header .main_header .toolbar>a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 16px;
    border: 1px solid rgba(var(--secondary_rgb),.3);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
#header .main_header .toolbar>a:hover{
    border: 1px solid var(--primary);
}
#header .main_header .toolbar>a .wishlist_count {
    position: absolute;
    color: var(--white);
    height: 17px;
    width: 17px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -6px;
    right: -4px;
    background: var(--primary);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
#header .main_header .toolbar .user_icon{
    height: 40px;
    width: 40px;
    font-size: 16px;
    color: var(--secondary);
    border: 1px solid rgba(var(--secondary_rgb),.3);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
#header .main_header .toolbar .user_icon:hover{
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
#header .main_header .dropdown{
    right: 0;
}
#header .main_header .dropdown-toggle::after {
    display: none;
}
#header .main_header .toolbar a{
    color: var(--secondary);
}
#header .main_header .toolbar a:hover{
    color: var(--primary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
#header .main_header .toolbar .dropdown ul li a {
    font-size: 14px;
    display: flex;
    gap:10px
}
/* ========================fixed navbar ================== */
.fixed_navbar_btn{
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    color: var(--secondary) !important;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.fixed_navbar_btn.show{
    display: block;

}
#navbar.scrolling{
    position: absolute;
    top: 50px;
}
#navbar.fixed {
    position: fixed;
    top: 90px;
    width: 100%;
    left: 0;
    z-index: 998;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
/* =================navbar section============= */
#navbar{
    position: relative;
    z-index: 99;
    background: var(--primary);
    height: 50px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.main_header.show{
    background: var(--white);
    position: fixed;
    height: 60px;
    width: 100%;
    padding: 30px 0;
    top: 0px;
    box-shadow: 0px 0px 5px 0px rgba(var(--black),0.1);
    z-index: 9999;
    /* transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s; */
}
.navbar .nav_cat{
    max-width: 270px;
    background-color: rgba(var(--black), 0.1);
}

.main_header .nav_cart{
    position: relative;
    height: 40px ;
    font-size: 12px;
    min-width: 120px;
    padding: 0 10px;
    /*background-color: rgba(var(--secondary_rgb), 0.5);
    */border: 1px solid rgba(var(--secondary_rgb), 0.3);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.main_header .nav_cart:hover{
    border-color: var(--primary);
}
.main_header .nav_cart .total_item{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    background: var(--primary);
    color: var(--white);
    right: -4px;
    top: -6px;
    font-size: 10px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.navbar.show .nav_cat{
    height: 60px ;
    background-color: rgba(var(--black), 0.1);
}
#navbar .nav_cat .category_menu {
    padding: 0;
    position: relative;
}
.navbar .nav_cat .category_menu .category_menu_title {
    color: var(--white);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    height: 50px;
    cursor: pointer;   
}
.navbar.show .nav_cat .category_menu .category_menu_title {
    height: 60px;    
}
#navbar .nav_cat .category_menu .category_menu_title i{
    transform: rotate(-0deg);
    -webkit-transform: rotate(-0deg);
    -moz-transform: rotate(-0deg);
    -ms-transform: rotate(-0deg);
    -o-transform: rotate(-0deg);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
#navbar .nav_cat .category_menu.active .category_menu_title i{
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
.navbar .nav_cat .category_menu .category_menu_list {
    padding: 0 60px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    background: #fff;
    z-index: 11;
    opacity: 0;
    padding: 20px 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    transition: all .3s linear 0s;
}
.navbar .nav_cat .category_menu .category_menu_list i,
.mobile_category .category_menu_item i{
    font-size: 12px;
    width: 20px;
}
.navbar .nav_cat .category_menu .category_menu_list .category_menu_item{
    display: flex; 
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--secondary);
}
.navbar .nav_cat .category_menu.active .category_menu_list {
    top: 50px;
    opacity: 1;
    overflow: visible;
    pointer-events:auto;
    padding: 0;
    transform: scale(1);
    border: 1px solid #e5e8ec;
}
.navbar.show .nav_cat .category_menu.active .category_menu_list {
    top: 60px;
}
#navbar .nav_cat .category_menu .category_menu_list .category_menu_item {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 400;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid rgba(var(--secondary_rgb),.2);
    border-top: 0;
}
#navbar .nav_cat .category_menu .category_menu_list .category_menu_item:hover,
#hero .hero_cat .category_menu .category_menu_list .category_menu_item:hover{
    color: var(--primary);
    /* padding-left: 20px; */
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
.navbar.show .navbar_main_menu{
    display: none;
}
#navbar .search_bar form input{
    border: 1px solid #c0b6b6;
    /* padding: 0 30px; */
    padding-right: 50px;
    height: 40px;
 }
 #navbar .search_bar form input::placeholder{
     color: #c0b6b6;
 }
 #navbar .search_bar form .search_bnt{
     color: #c0b6b6;
     right: 20px;
     top: 3px;
     border: none;
 }
.fixed_nav_search{
    display: none;
}
.navbar.show .fixed_nav_search{
    display: block;
}
#navbar menu .nav-item .nav-link{
    position: relative;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
}
#navbar menu .nav-item:hover{
    background-color: rgba(var(--black), 0.1);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
#navbar menu .nav-item .nav-link.active::after,
#navbar menu .nav-item .nav-link::after{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    left: -10px;
    bottom: 0;
    background: var(--white);
    visibility: hidden;
}
#navbar menu .nav-item .nav-link.active::after,
#navbar menu .nav-item:hover .nav-link::after{
    left: 0px;
    visibility: visible;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Ensure smooth transition */
.dropdown-menu {
    display: none;
    transition: all 0.3s ease-in-out;
}
.nav-item.dropdown:hover .dropdown-menu .dropdown-item{
    font-size: 14px;
    color: var(--secondary);
}
.nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover{
    color: var(--primary);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
.offcanvas-backdrop {
    z-index: 999;
}

.offcanvas.offcanvas-end {
    /* width: 300px; */
    z-index: 999999999;
}
 .offcanvas_cart .offcanvas-body{
    padding: 15px 25px 150px;
    position: relative;
}
.offcanvas-body .cart_item{
    position: relative;   
    padding-bottom: 20px;
}
.offcanvas-body .cart_item::after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(var(--secondary_rgb),.3);
}
.offcanvas-body .cart_item:nth-last-child(2)::after {
    height:  0px;
}
.offcanvas-body .cart_item .cart_product_image{
   aspect-ratio: 4/5;
   max-height: 80px;
   overflow: hidden;
}
.offcanvas-body .cart_item .cart_product_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.offcanvas-body .cart_item .cart_product_info .cart_item_info h6{
    line-height: 22px;
    font-size: 16px;
    /* max-width: 150px; */
    padding-bottom: 10px;
}
.offcanvas-body .cart_item .cart_product_info .cart_item_info p{
    line-height: 12px;
    font-size: 12px;
    /* max-width: 150px; */
    padding-bottom: 15px;
}
.offcanvas-body .cart_item .quantity_controls{
    position: relative;
    width: 100px;
}
.offcanvas-body .cart_item .quantity_controls button{
    position: absolute;
    color: var(--white);
    font-size: 20px;
    border: none;
}
.offcanvas-body .cart_item .quantity_controls .btn_decrease{
    left: 0px;
    top: -8px;
}
.offcanvas-body .cart_item .quantity_controls .btn_increase{
    right: 0px;
    top: -7px;
}
.offcanvas-body .cart_item .quantity_controls input{
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: none;
    text-align: center;
    width: 100px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.offcanvas-body .cart_item .quantity_controls input:focus{
    box-shadow: none;
    outline: none;
}
.offcanvas-body .fixed_cart_check{
    width: 396px;
    padding: 0 25px 15px;
    position: fixed;
    /* width: 100%; */
    bottom: 0%;
    right: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--white);
    /* padding-bottom: 10px; */
}
.offcanvas-body .fixed_cart_check .view_cart_btn{
    border: 1px solid var(--primary);
}
.offcanvas-body .fixed_cart_check .view_cart_btn:hover{
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.offcanvas-body .fixed_cart_check .checkout_btn{
    background: var(--primary);
    color: var(--white);
}
.offcanvas-body .fixed_cart_check .checkout_btn:hover{
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

/* ===================mega menu==================== */  
  /* Mega Menu styling */
  .mega-menu {
    z-index: 99;
    display: none;
    position: absolute;
    top: -1px;
    left: 100%;
    /* width: 61.466vw; col-8 width */
    width: 838px;
    background-color: #f9f9f9;
    min-height: 337px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  .has_mega_menu:hover .mega-menu {
    display: block;
  }
  /* Mega Menu Content */
  .mega-menu-content {
    display: flex;
    /* gap: 20px; */
  }
  .has_mega_menu .mega-menu-column {
    flex: 1; 
  }
  .mega-menu-column h4 {
    font-size: 16px;
    line-height: 22px;
    color: #333;
    margin-bottom: 10px;
  }
  .mega-menu-column ul {
    list-style: none;
    padding: 0;
  }
  .mega-menu-column li a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
    display: block;
    padding: 5px 0;
    
  }
  
  .mega-menu-column li a:hover {
    color: var(--primary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
  .promo img {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }
  .promo-link {
    color: var(--primary);
    text-decoration: none;
  }
        /* ===========================================================
=========================mobile navbar section================================
        =========================================================== */
.mobile_top_menu button{
    color: var(--primary);
    border: none;
}
.mobile_top_menu .btn:hover,
.mobile_top_menu .btn:active{
    color: var(--primary);
    border: none;
    outline: none;
    box-shadow: none;
}
#searchBarContainer.searchbar {
    position: fixed;
    top: -100px;
    z-index: 999999999999999999;
    left: 0;
    background: white;
    margin: 0 auto;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: top 0.5s ease;
}

#searchBarContainer input {
    width: 80vw;
    height: 40px;
    border: 1px solid rgba(var(--secondary_rgb),.3);
    outline: none;
    box-shadow: none;
    padding: 8px;
}
#searchBarContainer.searchbar.show-search {
    top: 0px;
    display: flex;
    justify-content: center;
}
.mobile_nav .nav-link{
    color: var(--secondary);
    font-size: 12px;
}
.mobile_bottom .nav-link {
    color: var(--primary)
}
.mobile_bottom .nav-link span{
    color: var(--primary);
    padding-top: 5px;
}

.mobile_category .sub_category {
    display: none;
}
.mobile_category .category_menu_list .category_menu_item{
    font-size: 14px;
    display: flex; 
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    color: var(--secondary);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
.mobile_category .category_menu_list .category_menu_item .fa-chevron-right,
.mobile_category .category_menu_list .sub_dropdown .fa-chevron-right{
    font-size: 12px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.mobile_category .category_menu_list .category_menu_item.active .fa-chevron-right,
.mobile_category .category_menu_list .sub_dropdown.active .fa-chevron-right{
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.mobile_category .category_menu_list .sub_category {
    padding: 0 30px;
}
.mobile_category .category_menu_list .sub_category .sub_dropdown {
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0;
    color: var(--secondary);
}

.mobile_category .category_menu_list .sub_category .sub_dropdow_menu {
    display: none;
    padding-left: 30px;
}
.mobile_category .category_menu_list .sub_category .sub_dropdow_menu li a{
    font-size: 14px;
    line-height: 22px;
    color: var(--secondary);
}
.mobile_category .view_all_cat{
    color: var(--primary);
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    padding-top: 20px;
}
/* ==================banner section============== */

#hero .hero_cat {
    background: #fff;
    max-width: 270px;
    display: block;
    /* z-index: 999; */
}
#hero .hero_cat .category_menu .category_menu_list .category_menu_item {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 400;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid rgba(var(--secondary_rgb),.2);
    border-top: 0;
}
#hero .hero_cat .category_menu .category_menu_list .category_menu_item i{
    font-size: 12px;
    width: 20px;
}
.carousel-item {
    height: calc(60vw/1.5);
    /* height: auto; */
    /* aspect-ratio: 5/4; */
    max-height: 376px;
    overflow: hidden;
}
#hero .hero_slider .carousel-item img{
    height: 100%;
    vertical-align: middle;
    object-fit:fill;
}
.hero_slider_wrapper {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.hero_slider_wrapper .prev_next{
    display: none;
}
.hero_slider_wrapper:hover .prev_next{
    display: block;
}
.hero_slider_wrapper .prev{
    cursor: pointer;
    left: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.hero_slider_wrapper .next{
    cursor: pointer;
    right: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);

} 
.hero_slider_wrapper .prev i, .hero_slider_wrapper .next i{
    background: rgba(var(--black),.3);
    display: inline-block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.hero_slider_wrapper .prev i:hover, .hero_slider_wrapper .next i:hover{
    background: var(--primary);
}


/* =========================breadcrumb========= */
#breadcrumb{
    padding-top: 20px;
}
.breadcrumb_wrapper{
    flex-wrap: wrap;
}
.breadcrumb_wrapper h2 {
    font-style: normal;
    font-size: 28px;
    line-height: 36px;
    color: rgb(var(--black));
    font-weight: 600;
    text-transform: capitalize;
}
.breadcrumb_wrapper h2 span{
    font-size: 16px;
    font-weight: 500;
}
.breadcrumb_wrapper .breadcrumb-item a{
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}
.breadcrumb_wrapper .breadcrumb-item.active {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    text-transform: capitalize;
}


/* ==================specific item catagory slider=================== */
#specific_item_catagory .specific_item a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#specific_item_catagory .specific_item .specific_item_img {
    background: rgba(var(--secondary_rgb),.2);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-bg-body);
    transition: all linear .3s;
}
#specific_item_catagory .specific_item .specific_item_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#specific_item_catagory .specific_item .specific_item_img .img_hvr_effect {
    height: 80px;
    width: 80px;
    background: var(--color-bg-body);
    box-shadow: 0px 0px 0px 8px rgba(252, 252, 252, 1) inset;
    -webkit-box-shadow: 0px 0px 0px 8px rgba(252, 252, 252, 1) inset;
    -moz-box-shadow: 0px 0px 0px 8px rgba(252, 252, 252, 1) inset;
    border: 2px solid var(--primary);
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transition: all linear .3s;
}
#specific_item_catagory .specific_item:hover  .specific_item_img .img_hvr_effect {
    opacity: 1;
    height: 100px;
    width: 100px;
}
#specific_item_catagory .specific_item a h6 {
    color: var(--secondary);
    text-transform: none;
    padding-top: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
}
#specific_item_catagory .specific_item a:hover h6 {
    color: var(--primary);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
#specific_item_catagory .specific_item span {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #515d66;
}
/* ===============offers section============== */
#offers .product_wrapper{
    padding: 0;
}
#offers .outer_slider_wrapper .prev,
#offers .outer_slider_wrapper .next{
    z-index: 10;
    color: rgb(var(--black));
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    cursor: pointer;
    transition: all linear .3s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
#offers .outer_slider_wrapper .prev:hover,
#offers .outer_slider_wrapper .next:hover{
    background: var(--primary);
    opacity: 1;
    color: var(--white);
}
#offers .outer_slider_wrapper .prev{
    position: absolute;
    right: 50px;
    top: 12px;
    transform: translateY(-50%);
}
#offers .outer_slider_wrapper .next{
    position: absolute;
    right: -10px;
    top: 12px;
    transform: translateY(-50%);
    
}
#offers .inner_product_slider_wrapper{
    position: relative;
}
#offers .inner_product_slider_wrapper .inner_prev i,
#offers .inner_product_slider_wrapper .inner_next i{
    z-index: 10;
    color: var(--white);
    background: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    cursor: pointer;
    transition: all linear .3s;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
#offers .inner_product_slider_wrapper:hover .inner_prev i,
#offers .inner_product_slider_wrapper:hover .inner_next i{
    opacity: 1;
}
#offers .outer_slider_wrapper .inner_prev{
    position: absolute;
    z-index: 99999999;
    left: 20px;
    top: 50%;
   
}
#offers .outer_slider_wrapper .inner_next{
    z-index: 9999999;
    position: absolute;
    right: 20px;
    top: 50%;

}
#offers .outer_slider_wrapper .offer_banner{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
#offers .outer_slider_wrapper .offer_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#offers .outer_slider_wrapper .offer_timer .timer{
    display: flex;
    gap:15px;
    left: 300px;
    top: 0;
    /* border: 4px solid var(--blue); */
    /* background: var(--white); */
    /* padding: 10px; */
    /* border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px; */
}
#offers .outer_slider_wrapper .offer_timer .timer .time{
    /* background: var(--primary); */
    color: var(--primary);
    font-size: 16px;
    /* height: 60px; */
    width: 60px;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    /* padding: 10px ; */
    /* border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px; */
}
#offers .outer_slider_wrapper .offer_timer .timer .time span{
    font-size: 32px;
    line-height: 24px;
}
#offers .outer_slider_wrapper .offer_timer .timer .colon{
    font-size: 20px;
    color: var(--primary);
}
/* ================today's deal section=========== */
#today_deal{
    background: rgba(var(--primary_rgba), 0.1);
}
#today_deal .tody_deal_slider_wrapper .prev i,
#today_deal .tody_deal_slider_wrapper .next i{
    background: var(--white);
}
#today_deal .tody_deal_slider_wrapper .prev i:hover,
#today_deal .tody_deal_slider_wrapper .next i:hover{
    background: var(--primary);
    color: var(--white);
}
#today_deal .tody_deal_slider_wrapper .product-card .product-image{
    aspect-ratio: 4/5;
    overflow: hidden;
    height: 225px;
    border-radius: 10px 0 0 10px;
    -webkit-border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    -ms-border-radius: 10px 0 0 10px;
    -o-border-radius: 10px 0 0 10px;
}
#today_deal .tody_deal_slider_wrapper .product-card .product-image img{
    height: 100%;
    width: 100%;
    vertical-align: middle;
    object-fit: fill;
}
#today_deal .tody_deal_slider_wrapper .product-card .product-info{
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* ================latest product section=========== */
/* ===============advertise section============ */
#adverise a{
    display: block;
    overflow: hidden;
}
#adverise a .advertise_img{
    
    aspect-ratio: 5/3;
    max-height: 250px;
    width: 100%;
    overflow: hidden;
    
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    border-radius: 10px ;
    -webkit-border-radius: 10px ;
    -moz-border-radius: 10px ;
    -ms-border-radius: 10px ;
    -o-border-radius: 10px ;
}
#adverise a:hover .advertise_img img{
    /* object-fit: cover; */
    vertical-align: middle;
   transform: scale(1.1);
   -webkit-transform: scale(1.1);
   -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
   -o-transform: scale(1.1);
   transition: all linear .3s;
   -webkit-transition: all linear .3s;
   -moz-transition: all linear .3s;
   -ms-transition: all linear .3s;
   -o-transition: all linear .3s;
}
#adverise a img{
    height: 100%;
    object-fit: fill;
}
.advertise_3 a .advertise_img{
    height: 408px;
    overflow: hidden;
}
.advertise_3 a .advertise_img img{
    height: 100%;
    object-fit: fill;
}
/* ==================brandint section============== */
#brand .brand_slider .brand_item{
    display: inline-block;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 120px;
    overflow: hidden;
}
#brand .brand_slider .brand_item img{ 
    height: 100%;
    width: 100%;
    object-fit: contain;
}
/* ====================blog section================== */
#blog .blog_wrapper .blog_card{
    position: relative;
}
#blog .blog_wrapper .blog_card .blog_img{
    display: block;
    width: 100%;
    /* height:  calc(24vw / 1.5); */
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  #blog .blog_wrapper .blog_card .blog_img img{
    width: 100%;
    height: 100%;
    vertical-align: middle;
    /* object-fit: fill; */
  }
#blog .blog_wrapper .blog_card .card-body .blog-title{
    color: rgb(var(--black));
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
}
#blog .blog_wrapper .blog_card:hover .card-body a{
    color: var(--primary);
}
#blog .blog_wrapper .blog_card .card-body .blog_info{
    color: var(--secondary);
    padding: 10px 0;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    /* height: 45px; */
}
#blog .blog_wrapper .blog_card .card-body .blog_info a{
    text-transform: capitalize;
    color: var(--primary);
}
#blog .blog_wrapper .blog_card .card-body .blog_description{
    color: var(--secondary);
    font-size: 14px;
    line-height: 18px;
}
#blog .blog_wrapper .blog_card .card-body .read_more{
    display: block;
    text-align: right;
    color: rgb(var(--black));
}
#blog .blog_wrapper .blog_card:hover .card-body .read_more{
    color: var(--primary);
}
/* =====================newsletter seciton================= */
#newsletter{
    background: url(../images/newsletterbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 40px 0;
    position: relative;
}
#newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black overlay with 50% opacity */
    z-index: 1; /* Ensures the overlay is on top of the image */
  }

  /* Content inside the background */
#newsletter .newsletter_content {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
  }
#newsletter h3{
    font-family: var(--header_family);
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 48px;
    color: var(--white);
    padding-bottom: 20px;
}
#newsletter p{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}
#newsletter form input:focus{
    box-shadow: none;
    outline: var(--primary);
}
#newsletter form .subscribe_btn{
    background: var(--primary);
    color: white;
}
/* ==============support section============= */
#support .support_item_wrapper .support_item{
    padding: 20px;
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
#support .support_item_wrapper .support_item::after{
    position: absolute;
    content: '';
    right: 0px;
    top: 50%;
    height: 50px;
    width: 1px;
    background: rgba(var(--black),.1);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
#support .support_item_wrapper .support_item:last-child::after{
    width: 0;
}
#support .support_item_wrapper .support_icon i{
    color: var(--primary);
}
#support .support_item_wrapper .support_content h4 {
    margin: 20px 0 3px;
    color: rgb(var(--black));
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
}
#support .support_content p {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    /* color: var(--secondary); */
}

/* =====================bottom to top================== */
.back_to_top {
    top: 50px;
    font-weight: 700;
    font-size: 18px;
    position: fixed;
    right: 30px;
    color: rgb(var(--black));
    width: 40px;
    height: 40px;
    z-index: 99;
    overflow: hidden;
    padding: 0;
    border-radius: 100%;
    box-shadow: 0px 0px 10px 0px rgba(var(--black),0.1);
    border: 1x solid var(--primary);
    align-items: center;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.back_to_top i{
    color: var(--color-btn-text);
    
}
.back_to_top.show:hover{
    background: var(--primary);
    color: var(--white);
}
.back_to_top.show{
    opacity: 1;
    visibility: visible;
    top: 90%;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}


/* ================footer section============= */
#footer {
    padding: 60px 0 0;
    background: rgba(var(--black),.7);
    color: var(--white);
    /* margin-top: 60px; */
    border-top: 1px solid var(--white);
    
}

#footer .footer_item_title {
    margin: 0 0 22px;
    padding: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
}

#footer .contact_information .information .text {
    font-weight: 500;
    color: var(--white);
    font-size: 14px;
    line-height: 22px;
    margin: 20px 0;
}
#footer .contact_information .information .phone {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    line-height: 38px;
    padding-top: 10px;
    display: block;
} 
#footer .contact_information .information .phone:hover {
    color: var(--primary);
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
} 
#footer .menu_footer .menu li.menu-item {
    line-height: 1;
}
#footer .menu_footer .menu a {
    position: relative;
    line-height: 32px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-body);
    text-transform: capitalize;
}
#footer .menu_footer .menu a::after{
    position: absolute;
    bottom: -4px;
    left: -10px;
    opacity: 0;
    content: "";
    height: 2px;
    width: 100%;
    background: var(--white);
    /* color: var(--primary); */
    font-weight: 600;
}
#footer .menu_footer .menu li.menu-item:hover a::after{
    opacity: 1;
    left: 0;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
#footer .download_app .download_option img{
    height: 35px;
    vertical-align: middle;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
#footer .social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    background: var(--primary);
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    z-index: 9;
    line-height: 25px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
#footer .social a::after{
    position: absolute;
    content: "";
    left: -100%;
    top: 0;
    z-index: -9;
    height: 100%;
    width: 100%;
    background: var(--yellow);
    visibility: hidden;

}
#footer .social a:hover:after{
    left: 0;
    visibility: visible;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

#footer .footer_payments{
    padding: 40px 0 20px;
}
#footer .footer_payments img{
    height: 20px;
    width: auto;
}

#footer .copyright{
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--secondary);
}
#footer .copyright p{
    font-size: 14px;
    line-height: 22px;
}
#footer .copyright p a{
    color: var(--primary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
#footer .copyright p a:hover{
    color: var(--yellow);
}

