*{

    margin: 0;

    padding: 0;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* Or any background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* High z-index to cover all content */
}

.loader-icon {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue spinner */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Header  Section Start */

header{

    width: 100%;

    position: sticky;

    top: 0;

    z-index: 999;

    padding: 10px 0px 20px 0px;

    background-image:url("../image/logo4.jpeg");

    background-size: cover;

    border-radius: 20px;

}

header .top-nav-bar{

    width: 95%;

    margin: auto;

    display: flex;

    justify-content: space-between;

}

header .top-nav-bar .logo{

    width: 15%;

}

header .top-nav-bar .logo img{

    width: 100%;

}

header .top-nav-bar .menu{

    width: 50%;

}

header .top-nav-bar .menu ul{

    width: 100%;

    height: 100%;

    list-style: none;

    display: flex;

    justify-content: space-evenly;

    align-items: center;

}

header .top-nav-bar .menu ul a{

    text-decoration: none;

}

header .top-nav-bar .menu ul a li{

    color: #ffffff;

    padding: 3px 5px;

    position: relative;

}

header .top-nav-bar .menu ul a li::before{

    content: "";

    width: 0%;

    height: 3px;

    border-radius: 1.5px;

    position: absolute;

    left: 50%;

    top: 100%;

    background: #f57033;

    transition: .5s;

}

header .top-nav-bar .menu ul a li:hover::before{

    width: 100%;

    left: 0%;

}

header .top-nav-bar .menu ul a li:hover{

    color: #f57033;

}

header .top-nav-bar .entry{

    /* width: 30%; */

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #ffffff;

}

header .top-nav-bar .entry .log-in{

    padding: 5px 5px;

    border-left: 1px solid #ffffff;

}

header .top-nav-bar .entry .helpline{

    padding: 5px 5px;

    margin-left: 20px;

    border-left: 1px solid #ffffff;

}

header .bottom-nav-bar{

    width: 95%;

    margin: auto;

    display: flex;

    justify-content: space-between;

}

header .bottom-nav-bar .categories{

    width: 20%;

    padding: 5px 10px;

    background: #f57033;

    display: flex;

    justify-content: space-between;

    color: #ffffff;

    font-size: 20px;

}

header .bottom-nav-bar .search-bar{

    width: 50%;

    height: 100%;

    background: #ffffff;



}

header .bottom-nav-bar .search-bar form{

    width: 100%;

    display: flex;

    height: 100%;

    background: #ffffff;



}
header .bottom-nav-bar .search-bar form input{

    width: calc(100% - 50px);

    border: none;

    outline: none;

}

header .bottom-nav-bar .search-bar form input::placeholder{

    padding-left: 20px;

    font-size: 17px;

}

header .bottom-nav-bar .search-bar form button{

    width: 50px;

    height: 35px;

    color: #ffffff;

    background: #f57033;

    border: none;

    font-size: 20px;

}

header .bottom-nav-bar .icons{

    width: 15%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #ffffff;

}

header .bottom-nav-bar .icons .cart{

    display: flex;

}

header .bottom-nav-bar .icons .cart .cart-icon{

    position: relative;

}
header .bottom-nav-bar .icons .cart .cart-icon .my_cart_count{

    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #d32121;
    top: -5px;
    right: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

/* Header  Section End */



/* Banner */

.banner img {

  width: 100%;

  border-radius: 20px;

  height: auto;

  margin: 10px 0;

}



/* shop-page-start */

.products{

    margin-top: 30px;

    width: 100%;

}

.products .head{

    font-weight: bold;

    font-size: 30px;

    

}

.products .product-all{

    width: 100%;

    display: flex;

}

.products .product-all .filter-list{

    width: 25%;

    height: auto;

}
.products .product-all .filter-list .filter-head{

    width: 90%;

    margin:auto;

    font-size: 15px;

}
.products .product-all .filter-list .filter{

    width: 90%;
    margin: auto;

}
.products .product-all .filter-list .filter .name{

    width: 100%;


    font-size: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid gray;

}
.products .product-all .filter-list .filter .subfilter{
    height: 100px;
    width: 100%;
}
.products .product-all .filter-list .filter .subfilter .subin{
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.products .product-all .filter-list .filter .subfilter .subin span{
    padding-left: 10px;
}

.products .product-all .products-list{

    width: 70%;

    display: flex;

    flex-wrap: wrap;

    

}

.products .product-all .products-list a{
    text-decoration: none;

}

.products .product-all .products-list  .product-card{

    width: calc(100% / 4);

    height: auto;

    margin-top: 20px;

}

.products .product-all .products-list  .product-card .product-detail{

    width: 90%;

    margin: auto;

    border-radius: 15px;

    box-shadow: 2px 2px 5px rgb(179, 223, 243);

    padding-bottom: 20px;

    transition: .5s;

}

.products .product-all .products-list  .product-card .product-detail:hover{

    transform: scale(1.05);

}

.products .product-all .products-list  .product-card .product-detail .product-image{

    height: 200px;

    border-radius: 20px;

    overflow: hidden;

}

.products .product-all .products-list  .product-card .product-detail .product-image img{

    width: 300px;

    height: 100%;

}

.products .product-all .products-list  .product-card .product-detail .product-name{

    width: 85%;

    margin: auto;

    padding: 5px 0px;

    font-weight: bold;

    font-size: 17px;

    color: #000;

}

.products .product-all .products-list  .product-card .product-detail .product-price{

    width: 85%;

    margin: auto;

    padding: 5px 0px;

    display: flex;

    justify-content: flex-start;

}

.products .product-all .products-list  .product-card .product-detail .product-price .price1{

    font-weight: bold;

    font-size: 15px;

    color:  #2874f0;

}

.products .product-all .products-list  .product-card .product-detail .product-price .price2{

    color: rgb(233, 101, 101);

    text-decoration: line-through;

    margin-left: 10px;

    font-weight: 200;

    font-size: 15px;

}

.products .product-all .products-list .product-card .product-detail .product-btn{

    width: 90%;

    margin: auto;

}

.products .product-all .products-list  .product-card .product-detail .product-btn button{

    width: 100%;

    height: 30px;

    border-radius: 15px;

    background: none;

    border: 1px solid #2874f0;

    color:  #2874f0;

    /* transition: 0.5s; */

}

.products .product-all .products-list  .product-card .product-detail .product-btn button:hover{

    background:  #2874f0;

    color: white;

}

@media(max-width:1025px){

    .products .products-list .product-card{

    width: calc(100% / 3);

}

}

@media(max-width:770px){

    .products .products-list .product-card{

    width: calc(100% / 2);

}

}

@media(max-width:425px){

    .products .products-list .product-card{

    width: calc(100% / 1);

}

}

/* shop-page-end */



/* cart-detail-page-start */

.cart-page{

            width: 100%;

            

            margin-top: 20px;

            background: #ebf5f8;

            border-radius: 20px;

        }

        .cart-page .cart{

            width: 95%;

            margin: auto;

            display: flex;

            justify-content: space-between;

        }

        .cart-page .cart .small{

            width: 10%;

        }

        .cart-page .cart .small .img{

            width: 95%;

            margin: auto;

            margin-top: 15px;

            box-shadow: 2px 2px 5px  gray;

        }

        .cart-page .cart .mid{

            width: 35%;

        }

        .cart-page .cart .mid .mid-img{

            width: 95%;

            margin: auto;

            margin-top: 15px;

        }

        .cart-page .cart .products-details{

            width: 50%;

            margin-top: 15px;

            height: auto;

        }

        .cart-page .cart .products-details .details{

            width: 100%;

        }

        .cart-page .cart .products-details .details .product-category{

            width: 100%;

            color: #7a7777;

        }

        .cart-page .cart .products-details .details .product-name{

            width: 100%;

            font-size: 30px;

        }

        .cart-page .cart .products-details .details .special{

            width: 100%;

            font-weight: 500;

            margin-top: 10px;

            font-size: 15px;

            color: #28bb61;

        }

        .cart-page .cart .products-details .details .price{

            width: 100%;

            margin-top: 10px;

            display: flex;

            align-items: flex-end;

        }

        .cart-page .cart .products-details .details .price .price1{

            font-weight: 700;

            font-size: 25px;

            color: #000;

        }

        .cart-page .cart .products-details .details .price .price2{

            font-weight: 700;

            font-size: 18px;

            margin-left: 10px;

            color: #7a7777;;

            text-decoration: line-through;

        }

        .cart-page .cart .products-details .details .price .off{

            font-weight: 500;

            font-size: 18px;

            margin-left: 10px;

            color: #28bb61;

        }

        .cart-page .cart .products-details .details .offers{

            margin-top: 10px;

        }

        .cart-page .cart .products-details .details .offers .tag{

            font-size: 15px;

            margin-top: 10px;

            font-weight: bold;

        }

        .cart-page .cart .products-details .details .offers .offer-name{

            font-size: 15px;

            margin-top: 10px;

        }

        .cart-page .cart .products-details .details .offers .offer-name i{

            color: #28bb61;

        }

        .cart-page .cart .products-details .details .btn{

            width: 90%;

            margin-top: 15px;

            display: flex;

            justify-content: space-between;

        }

        .cart-page .cart .products-details .details .btn a{

            width: 49%;

        }

        .cart-page .cart .products-details .details .btn a .buy-now{

            width: 100%;

            height: 40px;

            border: none;

            background: #28bb61;

            color: #ffffff;

            border-radius: 5px;

        }

        .cart-page .cart .products-details .details .btn .add-cart{

            width: 49%;

            height: 40px;

            border: none;

            background: #2874f0;

            color: #ffffff;

            border-radius: 5px;

        }

        .cart-page .cart .products-details .details .description{

            font-size: 30px;

            font-weight: 600;

            margin-top: 20px;

        }

        .cart-page .cart .products-details .details .des{

            font-size: 18px;

            font-weight: 300;

            margin-top: 15px;

            color: #7a7777;

        }

        .cart-page .cart .products-details .large{

            width: 100%;

            display: none;

            overflow: hidden;

            height: 350px;

        }

        .cart-page .cart .products-details .large .lar-img{

            width: 95%;

            margin: auto;

            

            transform: scale(2);    

        }

        img{

            width: 100%;

        }

/* cart-detail-page-end */



/* check-out-page-start */

.order_check{

    margin-top: 40px;

    width: 100%;

}

.order_check .check_out{

    width: 95%;

    margin: auto;

}

.order_check .check_out .status_bar{

    width: 100%;

    display: flex;

    justify-content: space-evenly;

    align-items: center;

}

.order_check .check_out .status_bar .bar{

    width: 90%;

    height: 3px;

    border-top: 1px solid #28bb61;

    border-bottom: 1px solid #28bb61;

    position: relative;

}

.order_check .check_out .status_bar .bar .inn_bar{

    width: 50%;

    height: 4px;

    background-color: #28bb61;

}

.order_check .check_out .status_bar .bar .one{

    position: absolute;

    width: 200px;

    top: -21.5px;

    left: -100px;

}

.order_check .check_out .status_bar .bar .one .in_one{

    height: 40px;

    width: 40px;

    border-radius: 50%;

    border: 6px solid #ffffff;

    background-color: #28bb61;

    color: #ffffff;

    margin: auto;

    display: flex;

    justify-content: space-evenly;

    align-items: center;

}

.order_check .check_out .status_bar .bar .one .one_name{

    color: #28bb61;

    margin-top: 10px;

    text-align: center;

}

.order_check .check_out .status_bar .bar .two{

    position: absolute;

    width: 200px;

    top: -21.5px;

    left: calc(50% - 100px);

}

.order_check .check_out .status_bar .bar .two .in_two{

    height: 40px;

    width: 40px;

    border-radius: 50%;

    border: 6px solid #ffffff;

    background-color: #28bb61;

    color: #ffffff;

    margin: auto;

    display: flex;

    justify-content: space-evenly;

    align-items: center;

}

.order_check .check_out .status_bar .bar .two .two_name{

    color: #28bb61;

    margin-top: 10px;

    text-align: center;

}

.order_check .check_out .status_bar .bar .three{

    position: absolute;

    width: 200px;

    top: -21.5px;

    right: -100px;

}

.order_check .check_out .status_bar .bar .three .in_three{

    height: 40px;

    width: 40px;

    border-radius: 50%;

    border: 1px solid #000000;

    background-color: #ffffff;

    margin: auto;

    display: flex;

    justify-content: space-evenly;

    align-items: center;

}

.order_check .check_out .status_bar .bar .three .three_name{

    color: #000000;

    margin-top: 10px;

    text-align: center;

}

.order_check .check_out .checkout_detail{

    width: 100%;

    display: flex;

    margin-top: 70px;

}

.order_check .check_out .checkout_detail .order_summary{

    width: 49%;

}

.order_check .check_out .checkout_detail .order_summary .head{

    width: 95%;

    margin: auto;

    font-size: 26px;

    font-weight: 500;

}

.order_check .check_out .checkout_detail .order_summary .product{

    width: 95%;

    margin: auto;

    margin-top: 15px;

    display: flex;

    justify-content: space-between;

}

.order_check .check_out .checkout_detail .order_summary .product .product_img{

    width: 140px;

}

.order_check .check_out .checkout_detail .order_summary .product .product_img img{

    width: 100%;

    border-radius: 5px;

}

.order_check .check_out .checkout_detail .order_summary .product .product_description{

    width: calc(100% - 220px);

}

.order_check .check_out .checkout_detail .order_summary .product .product_description .product_name{

    font-size: 20px;

    font-weight: 500;

}

.order_check .check_out .checkout_detail .order_summary .product .product_description .number_of_product{

    width: 100%;

    display: flex;

    align-items: center;

}

.order_check .check_out .checkout_detail .order_summary .product .product_description .number_of_product .product_count{

    margin-top: 10px;

    width: 150px;

    height: 30px;

    display: flex;

}

.order_check .check_out .checkout_detail .order_summary .product .product_description .number_of_product .product_count .minus{

    width: 25%;

    height: 100%;

    font-size: 20px;

    font-weight: 500;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid #000000;

    border-radius:  50% 0% 0% 50%;

    cursor: pointer;

}

.order_check .check_out .checkout_detail .order_summary .product .product_description .number_of_product .product_count .count{

    width: 50%;

    height: 100%;

    font-size: 18px;

    font-weight: 500;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid #000000;

}

.order_check .check_out .checkout_detail .order_summary .product .product_description .number_of_product .product_count .plus{

    width: 25%;

    height: 100%;

    font-size: 20px;

    font-weight: 500;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid #000000;

    border-radius:  0% 50% 50% 0%;

    cursor: pointer;

}

.order_check .check_out .checkout_detail .order_summary .product .product_description .number_of_product .product_remove{

    font-size: 20px;

    color: #087dcc;

    margin-left: 30px;

}

.order_check .check_out .checkout_detail .order_summary .product .product_price{

    width: 50px;

    height: 100%;

    font-size: 20px;

    display: flex;

    justify-content: center;

    align-items: center;



}

.order_check .check_out .checkout_detail .order_summary .cupon .cupon_head{

    width: 95%;

    margin: auto;

    margin-top: 15px;

    padding: 10px 0px;

    font-size: 24px;

    font-weight: 400;

    border-bottom: 1px dashed #7a7777;

}

.order_check .check_out .checkout_detail .order_summary .cupon .cupon_input{

    width: 95%;

    margin: auto;

    margin-top:5px;

}

.order_check .check_out .checkout_detail .order_summary .cupon .cupon_input input{

    width: 100%;

    height: 40px;

    margin: auto;

    margin-top: 15px;

}

.order_check .check_out .checkout_detail .order_summary .price_detail .head{

    

    margin: auto;

    margin-top: 15px;

    font-size: 24px;

    font-weight: 400;

    padding: 10px 0px;

    border-bottom: 1px dashed #7a7777;

}

.order_check .check_out .checkout_detail .order_summary .price_detail .price{

    width: 95%;

    margin: auto;

    margin-top: 10px;

    font-size: 17px;

    display: flex;

    justify-content: space-between;

    font-weight: 400;

}

.order_check .check_out .checkout_detail .order_summary .price_detail .discount{

    width: 95%;

    margin: auto;

    margin-top: 10px;

    font-size: 17px;

    display: flex;

    justify-content: space-between;

    font-weight: 400;

}

.order_check .check_out .checkout_detail .order_summary .price_detail .fee{

    width: 95%;

    margin: auto;

    margin-top: 10px;

    font-size: 17px;

    display: flex;

    justify-content: space-between;

    font-weight: 400;

}

.order_check .check_out .checkout_detail .order_summary .price_detail .total{

    width: 95%;

    margin: auto;

    margin-top: 5px;

    padding-top: 10px;

    font-size: 17px;

    display: flex;

    justify-content: space-between;

    font-weight: 500;

    border-top: 1px dashed #7a7777;

}

.order_check .check_out .checkout_detail .address_payment{

    width: 49%;

}

.order_check .check_out .checkout_detail .address_payment .address{

    width: 95%;

    margin: auto;

}

.order_check .check_out .checkout_detail .address_payment .address .head{

    display: flex;

    justify-content: space-between;

}

.order_check .check_out .checkout_detail .address_payment .address .head .head_text{

    font-size: 26px;

    font-weight: 500;

}

.order_check .check_out .checkout_detail .address_payment .address .head .head_add{

    color: #28b7f0;

    cursor: pointer;

    padding: 1px 5px;

    border-radius: 3px;

    border: 1px solid #28b7f0;

}

.order_check .check_out .checkout_detail .address_payment .address .uploaded .address_detail{

  margin-top: 10px;

  display: flex;

  justify-content: space-between;

}

.order_check .check_out .checkout_detail .address_payment .address .uploaded .address_detail .address_text{

  width: 95%;

}

.order_check .check_out .checkout_detail .address_payment .address .new{

  display: none;

}

.order_check .check_out .checkout_detail .address_payment .address .new .head{

  margin-top: 10px;

  font-size: 20px;

  padding-bottom: 10px;

  border-bottom: 1px dashed #7a7777;

}

.order_check .check_out .checkout_detail .address_payment .address .new .head .head_text{

    font-weight: 400;

}

.order_check .check_out .checkout_detail .address_payment .address .new .head .head_cross{

    cursor: pointer;

}

.order_check .check_out .checkout_detail .address_payment .address .new form{

    margin-top: 10px;

}

.order_check .check_out .checkout_detail .address_payment .order_payment{

    width: 95%;

    margin: auto;

    margin-top: 10px;

}

.order_check .check_out .checkout_detail .address_payment .order_payment .head{

    font-size: 26px;

    font-weight: 500;

    padding-bottom: 10px;

    border-bottom: 1px dashed #7a7777;

}

.order_check .check_out .checkout_detail .address_payment .order_payment .payment_method{

    width: 100%;

    margin-top: 10px;

    padding: 10px 0px;

    border: 1px solid #000000;

    display: flex;

    justify-content: center;

    align-items: center;

}

.order_check .check_out .checkout_detail .address_payment .order_payment .payment_method_card{

    width: 100%;

    margin-top: 10px;

}

.order_check .check_out .checkout_detail .address_payment .order_payment .place_order{

    width: 100%;

    margin-top: 10px;

    padding: 10px 0px;

    color: #ffffff;

    cursor: pointer;

    background: #f57033;

    border-radius: 5px;

    display: flex;

    justify-content: center;

    align-items: center;

}

.order_check .check_out .checkout_detail .address_payment .order_payment .payment_method .img img{

    width: 50px;

}

.order_check .check_out .checkout_detail .address_payment .order_payment .payment_method .name{

    margin-left: 10px;

}

/* check-out-page-end */

/* Your-order-page-start */

.track_your_order{

    width: 100%;

    margin-top: 20px;

}

.track_your_order .your_order{

    width: 90%;

    margin: auto;

}

.track_your_order .your_order .head{

    text-align: center;

    font-size: 28px;

    font-weight: 600;

}

.track_your_order .your_order .order_status .status_head{

    font-size: 20px;

    font-weight: 500;

}

.track_your_order .your_order .order_status .status_bar_sec{

    margin-top: 15px;

    padding: 10px 0px;

    box-shadow: 1px 1px 5px gray;

    border-radius: 10px;

}

.track_your_order .your_order .order_status .status_bar_sec .status_sec{

    width: 100%;

    display: flex;  

}

.track_your_order .your_order .order_status .status_bar_sec .status_sec .status{

    width: 20%;

    justify-items: center;  

    align-content: center;

    padding: 25px 0px;

}

.track_your_order .your_order .order_status .status_bar_sec .bar_sec{

    width: 100%;

    display: flex;  

    position: relative;

}

.track_your_order .your_order .order_status .status_bar_sec .bar_sec .bar{  

    position: absolute;

    width: 80%;

    height: 4px;

    background-color: #7a7777;

    left: 10%;

    top: 13px;

}

.track_your_order .your_order .order_status .status_bar_sec .bar_sec .bar .bar_inn{  

    width: 25%;

    height: 100%;

    background-color: #28bb61;

}

.track_your_order .your_order .order_status .status_bar_sec .bar_sec .tick{

    width: 20%;

    height: 30px;

   position: relative;

}

.track_your_order .your_order .order_status .status_bar_sec .bar_sec .tick .tick_mark{

    position: absolute;

    width: 30px;

    height: 30px;

    background-color: #28bb61;

    top: 0;

    left: calc(50% - 15px);

    border-radius: 5px;

   justify-items: center;

   align-content: center;

}

.track_your_order .your_order .order_status .status_bar_sec .date_sec{

    width: 100%;

    display: flex;  

}

.track_your_order .your_order .order_status .status_bar_sec .date_sec .date{

    width: 20%;

    text-align: center;

    padding: 25px 0px;

}

.track_your_order .your_order .order_detail .order_summary{

    width: 100%;

    padding: 15px 0px;

    box-shadow: 1px 1px 5px gray;

    border-radius: 10px;

    margin-top: 5px;

}

.track_your_order .your_order .order_detail .order_summary .order_head{

    width: 95%;

    margin: auto;

    font-size: 26px;

    font-weight: 500;

}

.track_your_order .your_order .order_detail .order_summary .product{

    width: 95%;

    margin: auto;

    margin-top: 15px;

    display: flex;

    justify-content: space-between;

}

.track_your_order .your_order .order_detail .order_summary .product .product_img{

    width: 140px;

}

.track_your_order .your_order .order_detail .order_summary .product .product_img img{

    width: 100%;

    border-radius: 5px;

}

.track_your_order .your_order .order_detail .order_summary .product .product_description{

    width: calc(100% - 220px);

}

.track_your_order .your_order .order_detail .order_summary .product .product_description .product_name{

    font-size: 20px;

    font-weight: 500;

}

.track_your_order .your_order .order_detail .order_summary .price_detail .price_head{

    

    margin: auto;

    margin-top: 15px;

    font-size: 24px;

    font-weight: 400;

    padding: 10px 0px;

    border-bottom: 1px dashed #7a7777;

}

.track_your_order .your_order .order_detail .order_summary .price_detail .price{

    width: 95%;

    margin: auto;

    margin-top: 10px;

    font-size: 17px;

    display: flex;

    justify-content: space-between;

    font-weight: 400;

}

.track_your_order .your_order .order_detail .order_summary .price_detail .discount{

    width: 95%;

    margin: auto;

    margin-top: 10px;

    font-size: 17px;

    display: flex;

    justify-content: space-between;

    font-weight: 400;

}

.track_your_order .your_order .order_detail .order_summary .price_detail .fee{

    width: 95%;

    margin: auto;

    margin-top: 10px;

    font-size: 17px;

    display: flex;

    justify-content: space-between;

    font-weight: 400;

}

.track_your_order .your_order .order_detail .order_summary .price_detail .total{

    width: 95%;

    margin: auto;

    margin-top: 5px;

    padding-top: 10px;

    font-size: 17px;

    display: flex;

    justify-content: space-between;

    font-weight: 500;

    border-top: 1px dashed #7a7777;

}

/* Your-order-page-end */

/* Footer Styling */

.footer {

  background-color: #082b68;;

  color: #fff;

  margin-top: 25px;

  padding: 40px 0 20px;

  font-family: 'Segoe UI', sans-serif;

}



.footer-container {

  display: flex;

  flex-wrap: wrap;

  max-width: 1200px;

  margin: auto;

  padding: 0 20px;

  justify-content: space-between;

}



.footer-about,

.footer-links,

.footer-support,

.footer-social {

  flex: 1 1 200px;

  margin: 20px 0;

}



.footer h3,

.footer h4 {

  margin-bottom: 15px;

  color: #f4a261;

}



.footer p {

  line-height: 1.6;

}



.footer ul {

  list-style: none;

  padding: 0;

}



.footer ul li {

  margin-bottom: 10px;

}



.footer ul li a {

  color: #bbb;

  text-decoration: none;

  transition: color 0.3s;

}



.footer ul li a:hover {

  color: #fff;

}



.social-icons a {

  display: inline-block;

  margin-right: 10px;

}



.social-icons img {

  width: 24px;

  height: 24px;

  filter: brightness(0) invert(1);

  transition: transform 0.3s;

}



.social-icons img:hover {

  transform: scale(1.1);

}



.footer-bottom {

  text-align: center;

  padding-top: 20px;

  border-top: 1px solid #444;

  font-size: 14px;

  color: #aaa;

}



/* Responsive */

@media (max-width: 768px) {

  .footer-container {

    flex-direction: column;

    text-align: center;

  }



  .footer-about,

  .footer-links,

  .footer-support,

  .footer-social {

    margin: 20px 0;

  }



  .social-icons a {

    margin: 0 10px;

  }

}

