@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');
:root{
    --primary: #00bc65;
    --primary_rgb: 0, 188, 101;
    --secondary: #919199;
    --secondary_rgb: 145, 145, 153;
    --white:#ffffff;
    --black: #000000;
    --btn_hvr: 212, 45, 42;
    --blue: 13, 104, 226;
    --yellow:#f97b01;
    --yellow_rgb:249,123,1;
    --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==================== */
.modal{
    z-index: 999999;
}
.section_gap{
    padding: 80px 0;
  }
  .header1{
    font-size: 60px;
    font-weight: 500;
    line-height: 75px;
    text-transform: capitalize;
  }
  .header2{
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
  }
  .header3{
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    text-transform: capitalize;
  }
  .header4{
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
  }
  .header5{
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
  }
  .header6{
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
  }
  ul li,
  .common_p{
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    /* color: var(--black); */
  }
  .link_tag{
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: var(--yellow);
    padding-top: 10px;
  }
  .custom-button {
      position: relative;
      overflow: hidden;
      background-color: var(--yellow);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
      transition: background-color 0.6s;
      -webkit-transition: background-color 0.6s;
      -moz-transition: background-color 0.6s;
      -ms-transition: background-color 0.6s;
      -o-transition: background-color 0.6s;
  }
  
  .custom-button:hover {
      background-color: var(--yellow);
      color: white;
  }
  
  .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.7);
      /*Whiteripple*/transform: scale(0);
      animation: ripple-animation 0.6s linear;
      -webkit-animation: ripple-animation 0.6s linear;
  }
  
  @keyframes ripple-animation {
      to {
          transform: scale(4);
          opacity: 0;
          -webkit-transform: scale(4);
          -moz-transform: scale(4);
          -ms-transform: scale(4);
          -o-transform: scale(4);
  }
  }

  /* ========common product card============= */
  .product_slider_wrapper{
    position: relative;
  }
  .product_slider_wrapper .prev_next{
    display: none;
  }
  .product_slider_wrapper:hover .prev_next{
    display: block;
  }
 .product_slider_wrapper .prev i, .product_slider_wrapper .next i{
    z-index: 999;
    position: relative;
    color: var(--black);
    width: 40px;
    height: 40px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    cursor: pointer;
    transition: all linear .3s;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    
}
 .product_slider_wrapper .prev i:hover, .product_slider_wrapper .next i:hover {
    background: var(--primary);
    opacity: 1;
    color: var(--white);
} 
 .product_slider_wrapper .prev{
    z-index: 999999;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
 .product_slider_wrapper .next{
    z-index: 999999;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    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================== */
.navbar{
    z-index: 99999;
}
.mobile_bottom{
    z-index: 9999;
}
.offcanvas.offcanvas-start {
    z-index: 999999999999;
}
.navbar.navbar-expand-lg .container,
.deals-section .container{
    max-width: 1520px;
}
.navbar-nav .nav-link {
    text-align: start;
}

.navbar-brand img {
    height: 50px;
    object-fit: contain;
}
.dropdown button {
    color: var(--secondary);
    outline: none;
    border: none;
    font-size: 14px;
}
.dropdown .btn.show {
    color: var(--secondary);
}
.navbar .dropdown .dropdown-menu a{
    background: transparent;
    color: var(--secondary);
}
.dropdown button:hover {
    background: transparent;
    color: var(--primary);
}
.navbar .dropdown .dropdown-menu a:hover{
    background: var(--primary);
    color: var(--white);
}

.dropdown-toggle::after {
    display: none;
    /* Removes default Bootstrap caret */
}

.navbar-nav a {
    position: relative;
    /* line-height: 32px; */
    font-weight: 500;
    font-size: 14px;
    color: var(--secondary);
    text-transform: capitalize;
}
.navbar-nav .nav-link.active,
.navbar-nav a:hover {
    color: var(--primary);
}
/* .navbar-nav .nav-link.active::before, */
.navbar-nav a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: var(--primary);
    bottom: 5px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
}
/* .navbar-nav .nav-link.active::before, */
.navbar-nav a:hover::before {

    transform-origin: left;
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 10px;
        border-radius: 5px;
    }
}

/* ===============header section=================== */

#header{
    background: var(--primary);
}
#header  .dropdown.category_dropdown button {
    color: var(--white);
    background: transparent;
    padding: 20px 0;
    font-weight: 600;
    outline: none;
    border: none;
    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 .category_dropdown .dropdown-menu{
    width: 250px;
    min-height: 60vh;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(var(--secondary_rgb),0.3);
}

#header .dropdown button:hover, #header .dropdown button:hover {
    background: transparent;
    color: var(--white);
}
#header .category_dropdown>.dropdown-menu {
    position: absolute;
    top: 100%;
    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 .category_dropdown .dropdown-menu .dropdown-menu {
    top: 0 !important;
    left: 100%;
    display: none;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}
.category_dropdown .dropdown-item:hover > .dropdown-menu {
    display: block;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}

.category_dropdown .dropdown-item a{
    color: var(--secondary);
    font-size: 14px;
    
}
.category_dropdown .dropdown-item  i{
    font-size: 10px;
    color: var(--secondary);
}
.category_dropdown .dropdown-item:hover {
    background-color: var(--primary);
    color: white !important;
}
.category_dropdown .dropdown-item:hover>a,
.category_dropdown .dropdown-item:hover>i{
    color: var(--white);
}
#header .search_bar form input{
    border: 1px solid rgba(var(--secondary_rgb),.2);
    padding-right: 40px;
    height: 40px;
 }
 #header .search_bar form input:focus{
     border: 1px solid var(--white);
 }
 #header .search_bar form input::placeholder{
     color: var(--secondary);
 }
 #header .search_bar form .search_bnt{
     color: var(--secondary);
     background: var(--white);
     right: 24px;
     top: 50%;
     border: none;
     transform: translateY(-50%);
     -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
     -o-transform: translateY(-50%);
}


#header .log_wish>a{
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 18px;
    /* border: 1px solid var(--white); */
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
#header .log_wish a .wishlist_count {
    position: absolute;
    color: var(--yellow);
    height: 19px;
    width: 19px;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -5px;
    right: -1px;
    background: var(--white);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
#header .log_wish .user_icon{
    height: 40px;
    width: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    /* border: 1px solid var(--white); */
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
/* #header .log_wish .user_icon:hover{
    color: var(--primary);
    background: 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 .log_wish .dropdown{
    right: 0;
}
#header .log_wish .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu[data-bs-popper] {
    left:100%;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

#header .log_wish .dropdown-item:hover {
    background-color: var(--primary);
    color: white !important;
}

#header .log_wish a:hover{
    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 .log_wish .dropdown ul li a {
    font-size: 14px;
    display: flex;
    gap:10px
}
.nav_cart{
    position: relative;
    z-index: 9999;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.nav_cart .cart_top{
    background: var(--yellow);
    font-size: 14px;
    width: 100% ;
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
}
.nav_cart .navbarTotalPrice{
    width: 100%;
    background: var(--white);
    color: var(--yellow);
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    padding: 10px;
}

/* ================mobile fixed navbar section================  */
 /* ===========================================================
=========================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;
            font-size: 12px;
        }
        
        .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.active{
            color: var(--primary);
        }
        .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 10px 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_dropdown.active{
            color: var(--primary);
        }
        .mobile_category .category_menu_list .dropdown-item{
            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;
        }

/* ===============offcanvas cart section===============  */
.offcanvas-backdrop {
    z-index: 999999999;
}
.modal-backdrop{
    z-index: 99999;
}

.offcanvas.offcanvas-end {
    /* width: 300px; */
    z-index: 999999999999;
}
.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()::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: fill;
}
.offcanvas-body .cart_item .cart_product_info .cart_item_name{
    line-height: 22px;
    font-size: 16px;
    /* max-width: 150px; */
    padding-bottom: 10px;
}
.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_cart .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_cart .fixed_cart_check .view_cart_btn{
    border: 1px solid var(--primary);
}
.offcanvas_cart .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_cart .fixed_cart_check .checkout_btn{
    background: var(--primary);
    color: var(--white);
}
.offcanvas_cart .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;
}
.offcanvas-body .cart_item .cart_product_info .btn_remove{
    border: none;
}

/* =======================banner section===================== */
#slider {
    /* max-height: 350px; */
    overflow: hidden;
}
#slider .slider_wrapper div{
    height: 100%;
    width: 100%;
}
#slider .slider_wrapper .slick-track{
    gap: 0;
}

.banner_left_image {
    aspect-ratio: 10/4;
    overflow: hidden;
}

.banner_left_image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all linear .3s;
}

.images_card {
    padding: 0;
    overflow: hidden;
}

.banner_left_image:hover img {
    object-fit: fill;
    transform: scale(1.1);
}
#slider .wrapper_slidershow{
    padding-left: 180px;
}
#slider .slider_wrapper .slider_item{
    aspect-ratio: 16/9;
    /* height: 350px; */
    overflow: hidden;
}
#slider .slider_wrapper .slider_item img{
    height: 100%;
    width: 100%;
    object-fit: fill;
    vertical-align: bottom;
}

/* ======================= category section==================== */
.category_slider .category_card {
    
    /* color: var(--black); */
    border: none;
    text-align: center;
    text-align: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.category_slider .category_slider_item:hover a{
    color: var(--primary);
  
}
.category-image {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* ==========================product card========================= */
.slick-track{
    display: flex;
    gap: 15px;
  }

 /* Card Styles */
 .product-card {
    border: 1px solid rgba(var(--primary_rgb),.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* Image Swap */
.product-card .product-image {
    padding: 20px;
    width: 100%;
    aspect-ratio: 4/5;
    max-height: 250px;
    display: block;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
}

.product-card .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all linear 1s;
    -webkit-transition: all linear 1s;
    -moz-transition: all linear 1s;
    -ms-transition: all linear 1s;
    -o-transition: all linear 1s;
}

.product-card:hover .default-image {
    opacity: 0;
}

.product-card:hover .hover-image {
    opacity: 1;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

/* Quick View & Wishlist Button */
.product-buttons {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: bottom 0.3s ease-in-out;
}

.product-card:hover .product-buttons {
    opacity: 1;
    visibility: visible;
    bottom: 10px;
}

.btn-quick,
.btn-wishlist {
    background: var(--white);
    color: var(--primary) !important;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}
.btn-quick:focus,
.btn-quick:hover,
.btn-wishlist:focus,
.btn-wishlist:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-quick:hover i,
.btn-quick:focus i,
.btn-wishlist:focus i,
.btn-wishlist:hover i {
   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;
}

/* Product Info */
.product-info {
    text-align: center;
    border-top: 1px solid rgba(var(--primary_rgb),.2);
    background: var(--white);
    z-index: 999;
    position: relative;
    padding: 15px;
}

.product-info .category {
    display: inline-block;
    font-size: 12px;
    text-transform: capitalize;
    border-radius: 20px;
    color: var(--yellow);
    text-decoration: none;
}

.product-info .product_name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    margin-bottom: 10px;
}
.product-info .product_unit{
    font-size: 12px;
    color: var(--secondary);
}
.product-card:hover .product-info .product_name {
    color: var(--primary);
}

.product-card .product-info .product-price {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
}

.product-card .product-info .product-price .original-price {
    text-decoration: line-through;
    font-size: 12px;
    color: #999;
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
}

/* .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-info .star{
    justify-content: center;
}
.product-info .star i{
    font-size: 12px;
    color: var(--yellow);
}
.product-info .star span{
    font-size: 12px;
    color: var(--secondary);
}
/* Add to Cart Button */
.btn-add-cart {
    position: relative;
    font-size: 14px;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
    transition: all 0.3s;
    border-radius: 5px;
    padding: 8px 12px;
}

.btn-add-cart i {
    position: absolute;
    left: 50%;
    color: #fff;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-add-cart span {
    display: inline-block;
    transition: opacity 0.3s;
}

.btn-add-cart:hover {
    background: var(--primary);
}

.btn-add-cart:hover span {
    opacity: 0;
}

.btn-add-cart:hover i {
    opacity: 1;
}

/* ========================weekly deal seciton================== */
.timer {
    font-size: 24px;
    /* margin-bottom: 20px; */
    color: var(--yellow);
}
.nav_tabs_wrapper i{
    cursor: pointer;
    color: var(--yellow);
    padding: 0 10px; 
}
.nav-tabs {
    width: 320px;
    display: flex;
    justify-content: center;
    border: none;
}

.nav-tabs .tab {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #ddd;
    margin: 0 5px;
    background: #fff;
    border-radius: 5px;
}

.nav-tabs .tab.active {
    background: var(--primary);
    color: #fff;
}

.slider {
    display: none;
}

.deal_products {
    background: rgba(var(--primary_rgb), .3);
}

.deal_products .product-card .product-image {
    aspect-ratio: 4/4;
    max-height: 200px;
}

.week_deal_banner {
    background: rgba(var(--primary_rgb), .3);
    aspect-ratio: 4/4;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.week_deal_banner img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.slider.active {
    display: block;
}
.nav-tabs .slick-track .slick-slide {
    width: 33.33% !important;
}


/* ========================organic product======================= */
.best_selling,
.ramadan_special_product{
    background: rgba(var(--primary_rgb),.09);
}

/* =======================organic banner ======================= */
.grocery_ad .advertise {
    aspect-ratio: 16/6;
    display: block;
    /* max-height: 400px; */
    overflow: hidden;
}
.grocery_ad .advertise img{
    width: 100%;
    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;
}

/* ============================ for you product section================ */
.for_you .products {
    display: flex;
    flex-wrap: wrap;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 20px 0;
}

.for_you .product_slider_item {
    flex: 0 0 calc(20% - 12px);

    overflow: hidden;
    background: #fff;
}

.for_you .loading {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #999;
}
.ml-loader {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 auto;
  }
  
  .ml-loader div {
    -webkit-transform-origin: 25px 25px;
    -ms-transform-origin: 25px 25px;
    transform-origin: 25px 25px;
    -webkit-animation: 1.2s opaque ease-in-out infinite both;
    animation: 1.2s opaque ease-in-out infinite both;
  }
  
  .ml-loader div::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 30px;
    width: 4px;
    height: 15px;
    border-radius: 10px;
    background-color: var(--secondary);
  }
  
  .ml-loader div:nth-child(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .ml-loader div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  .ml-loader div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
  .ml-loader div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .ml-loader div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  .ml-loader div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .ml-loader div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .ml-loader div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
  .ml-loader div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  .ml-loader div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
  }
  .ml-loader div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .ml-loader div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
  }
  .ml-loader div:nth-child(13) {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
  @-webkit-keyframes opaque {
    0% {
      opacity: 0.1;
    }
    40% {
      opacity: 1;
    }
    80% {
      opacity: 0.1;
    }
    100% {
      opacity: 0.1;
    }
  }
  
  @keyframes opaque {
    0% {
      opacity: 0.1;
    }
    40% {
      opacity: 1;
    }
    80% {
      opacity: 0.1;
    }
    100% {
      opacity: 0.1;
    }
  }
  

  
  @media only screen and (max-width: 968px) {
    .flexbox > div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333%;
      flex: 0 0 33.3333333%;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .flexbox > div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
    }
  }
  
  @media only screen and (max-width: 568px) {
    .flexbox > div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
    }
  }

  /* ====================product modal==================== */
  /* =============modal scriollbar style================ */
/* Scrollbar width */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

/* Scrollbar Track */
.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light gray */
    border-radius: 10px;
}

/* Scrollbar Handle */
.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary); /* Blue scrollbar */
    border-radius: 10px;
}

 /* Container styling for the product image */
 .modal .product-image-container {
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 500px;
    position: relative;
    margin: 0 auto;
}

/* Image styling and zoom effect */
.modal .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.modal .product-image-container:hover .product-image {
    transform: scale(1.5);
    /* Zooms the image by 1.5 times */
}

/* Styling for the thumbnail images */
.thumbnail-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.thumbnail_image{
    aspect-ratio: 4/4;
    max-height: 80px;
}
.thumbnail_image .thumbnail {
    width: 100%;
    height: 100%;
    object-fit: fill;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
}

/* ======================product  details modal=================== */

.product_desc_section{
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}
.product_details{
    padding: 20px;
    box-shadow: -6px 1px 57px -2px  rgba(var(--black),0.1);
}
.product_details .product_tag .tag{
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.product_details .product_name{
    margin-bottom: 10px;
}
.product_details .product_name h3{
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 48px;
    font-weight: 500;
    color: rgb(var(--black));
    
}
.product_details .star-rating span i{
    color: var(--yellow);
    font-size: 13px;
}
.product_details .star-rating .rating_caption{
    color: var(--secondary);
}
.product_details .product_price{
    padding: 25px 0;
    margin-top: 25px;
    border-top: 1px solid #e5e8ec;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-price-product);
    margin: 0;
    display: block;
    line-height: 1;
}
.product_details .product_price .original_price{
    text-decoration: line-through;
    font-size: 16px;
    color: #999;
    margin-left: 10px;
}
.product_details .product_description{
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    color: var(--color-text-body);
}
.product_details .product_description ul {
    list-style: disc;
}
.product_details .product_color span{
    position: relative;
    height: 24px;
    width: 24px;
    display: block;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    -webkit-border-radius:100%;
}
.product_details .product_color span.active::after{
    position: absolute;
    content: "";
    top: -4px;
    left: -4px;
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.product_size ul li,
.product_ram ul li,
.product_storage ul li {
    padding-left: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
    height: 30px;
    padding: 0 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.product_size ul li.checked,
.product_ram ul li.checked,
.product_storage ul li.checked {
    border: 1px solid var(--primary);
}
.product_size ul li.checked::before, .product_ram ul li.checked::before, .product_storage ul li.checked::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--white);
    position: absolute;
    right: 0px;
    bottom: -5px;
    font-size: 8px;
    z-index: 9999;
    transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
}

.product_size ul li.checked::after,
.product_ram ul li.checked::after,
.product_storage ul li.checked::after {
    position: absolute;
    content: "";
    width: 39px;
    height: 33px;
    background: var(--primary);
    right: -27px;
    bottom: -19px;
    transform: rotate(45deg);
}


.product_desc_section .shop_details{
    margin-top: 20px;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(var(--black),0.1);
}
.product_desc_section .shop_details .shop_info{
    padding-bottom: 25px;
}
.product_desc_section .shop_details .shop_info .shop_logo{
    /* display: inline-block; */
    width: 50px;
    height: 50px;
    border: 1px solid rgba(var(--secondary_rgb), 0.3);
    overflow: hidden;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.product_desc_section .shop_details .shop_info .shop_logo img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    vertical-align: middle;
}
.product_desc_section .shop_details .shop_info .shop_name{
    font-size: 16px;
    font-weight: 600;
}
.product_desc_section .shop_details .shop_rev_products{
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(var(--secondary_rgb),.3);
}
.product_desc_section .shop_details .shop_rev_products .review_star{
    
    font-size: 20px;
    /* line-height: 30px; */
}
.product_desc_section .shop_details .shop_rev_products .review_star i{
    color: var(--yellow);
}
.product_desc_section .product_quantity{
    margin: 25px 0;
    height: 50px;
    display: flex;
    align-items: center;
    
}

.product_quantity .group-quantity-button {
    display: inline-flex;
    height: 38px;
    background: #fff;
    border: 1px solid #E5E8EC;
    border-radius: 5px;
    min-width: 110px;
    margin: 0;
    justify-content: space-evenly;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.product_quantity .group-quantity-button button {
    display: inline-flex;
    width: 40px;
    border: none;
    text-align: center;
    height: 100%;
    width: 40px;
    color: rgb(var(--black));
    background: rgba(var(--secondary_rgb), 0.3);   
    align-items: center;
    font-size: 22px;
    position: relative;
    justify-content: center;
    align-content: center;
}
.product_quantity .group-quantity-button button:focus{
    background: rgba(var(--secondary_rgb), 0.3);   
}
.product_quantity .group-quantity-button input{
    border: none;
    outline: none;
    height: 100%;
    width: 100px;
    text-align: center;
    font-size: 14px;
    letter-spacing: inherit;
    font-weight: 600;
    justify-content: center;
    align-content: center;
    display: inline-flex;
}
.combo_product .combo_product_list a{
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
}
.combo_product .combo_product_list p{
    padding-top: 6px;
    font-size: 10px;
}

.add_to_cart .add-to-cart,
.buyitnow .buy_it_btn,
.product_desc_section .shop_details .store_btn {
    padding: 10px;
    display: inline;
    text-transform: capitalize;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.add_to_cart .add-to-cart {
    background: var(--yellow);
}

.add_to_cart .add-to-cart:hover,
.buyitnow .buy_it_btn:hover{
    background: var(--secondary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.details-info .group-button .add-to-cart .text {
    color: #fff;
    display: inline-block;
}
.basic_info{
    padding: 10px;
    /* border-bottom: 1px solid #e5e8ec; */
    box-shadow: 0px 0px 10px 0px rgba(var(--black),0.1);
}
.basic_info .content p{
    line-height: 1.5;
}
.product_infor {
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin: 25px 0;
    padding-top: 25px;
    border-top: 1px solid #e5e8ec;
}
.product_infor>div{
    position: relative;
}
.product_infor>div span{
    position: absolute;
    left: 100px;
}
.product_infor>div span a{
    color: #777;
}

  
  


/* =====================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(--primary_rgb), .1);
    color: var(--black);
    /* margin-top: 60px; */
    border-top: 1px solid var(--white);
    
}

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

#footer .contact_information .information .text {
    font-weight: 500;
    color: var(--black);
    font-size: 14px;
    line-height: 22px;
    margin: 20px 0;
}
#footer .contact_information .information .phone {
    color: var(--black);
    font-weight: 500;
    font-size: 18px;
    line-height: 38px;
    padding-top: 10px;
    display: block;
} 
#footer .contact_information .information .phone:hover {
    color: var(--black);
    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;
}
 .menu a {
    position: relative;
    line-height: 32px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-body);
    text-transform: capitalize;
}
.menu a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: var(--black);
    bottom: -5px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
}

.menu a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}
#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: rgba(var(--primary_rgb), .3);
    color: var(--black);
    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;
    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 .social a:hover{
    color: var(--white);
}
#footer .social a::after{
    position: absolute;
    content: "";
    left: -100%;
    top: 0;
    z-index: -9;
    height: 100%;
    width: 100%;
    background: var(--primary);
    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;
    margin-bottom: 50px;
    border-top: 1px solid var(--primary);
}
#footer .copyright p{
    font-size: 14px;
    line-height: 22px;
}

