@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');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    outline: none;
    user-select: none;
}
:root{
    --primary-font: "Poppins", sans-serif;
    
    --primary-green:#3D8B2E;
    --dark-green: #2F7A27;
    --light-green: #5AA13C;

    --primary-orange: #F5822A;
    --dark-orange: #FF9A3C;
    --light-orange: #E96B12;

    --green-gradient: linear-gradient(90deg, #2F7A27 0%, #5AA13C 100%);
    --orange-gradient: linear-gradient(90deg, #E96B12 0%, #FF9A3C 100%);
    --green-orange-gradient: linear-gradient(90deg, #2F7A27 0%, #F5822A 100%);
    --dark-gradient: linear-gradient(135deg, #1F5F1A 0%, #F5822A 100%);
    --soft-gradient: linear-gradient(135deg, #5AA13C 0%, #FFB067 100%);

    --text-color: #2f2b2b;
}
body{
    overflow-x: hidden;
    /* background: #f5f5f5; */
}
body::-webkit-scrollbar{
    width: 5px;
    background: #000;
}
body::-webkit-scrollbar-thumb{
    background: #f5f5f5;
}
.padding0{padding: 0;}
a{text-decoration: none;color: #000; display: block;}
ul{padding: 0; margin: 0; list-style-type: none;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
h2 i{
    color: var(--third-color);
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.fields-btn .loading{
    width: 25px;
    height: 25px;
    border: 3px solid #000;
    border-top: 3px solid transparent;
    animation: loading 0.5s linear infinite;
    border-radius: 50%;
}
.tagline{font-size: 16px;font-weight: 400;text-transform: uppercase;letter-spacing: 1px;margin: 0 0 10px;display: inline-block;color: #000000;}
.tagline img{width: 30px;margin-right: 10px;}
.msgbox{
    /* position: fixed; */
    /* bottom: 0px; */
    /* z-index: 99; */
    /* width: auto; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* transition: .3s linear; */
    opacity: 0;
    pointer-events: none;
}
.msgbox.active{
    bottom: 20px;
    opacity: 1;
    pointer-events: auto;
}
.msgbox .loading-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgb(0 0 0 / 60%);
    border-radius: 3px;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}
.msgbox .loading-wrapper .loading_span{
    width: 50px;
    height: 50px;
    border: 4px solid #fff;
    display: inline-block;
    border-radius: 50px;
    border-top: 4px solid transparent;
    animation: circle 0.5s linear infinite;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.msgbox .loading-wrapper p{
    font-size: 15px;
}
.msgbox .alertdiv{
    background: #ffffff;
    padding: 16px  20px;
    text-align: center;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 99;
    box-shadow: 3px 3px 7px 0px #0000000d;
}
.msgbox .alertdiv:before{
    content: "";
    width: 3px;
    height: 100%;
    background: var(--light-green);
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: left;
}
/* .msgbox .alertdiv.active:before{
    animation: lineless 1.5s linear;
}
@keyframes lineless {
    100%{transform: scaleX(0);}
} */
.msgbox .alertdiv.failed:before{
    background: #ff0000;
}
.msgbox .alertdiv.success{}
.msgbox .alertdiv.failed{}
.msgbox .alertdiv p{color: #000;margin: 0;font-size: 15px;letter-spacing: .5px;display: flex;gap: 5px;}
.msgbox .alertdiv p i{margin-right: 5px;font-size: 20px;line-height: 1;}

.msgbox .alertdiv.success p{color: var(--light-green);}
.msgbox .alertdiv.success p i{color: var(--light-green);}
.msgbox .alertdiv.failed p{
    color: #ff0000;
}
.msgbox .alertdiv.failed p i{color: #ff0000;}
.padd0{padding: 0;}

.maintitle{
    margin: 0 0 30px;
    position: relative;
    z-index: 1;
}
.maintitle h2{
    font-size: 26px;
    position: relative;
    z-index: 1;
    color: var(--text-color);
    font-weight: 400;
}
.maintitle p{
    color: var(--text-color);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: .5px;
}
.maintitle a{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 10px 20px;
    line-height: 1;
    border-radius: 50px;
    color: var(--text-color);
    transition: .3s linear;
    z-index: 99;
}
.maintitle a:hover{
    border-color: var(--dark-green);
    color: #fff;
    background: var(--light-green);
}
.breadcrumb-page{padding: 0 50px; margin: 15px 0 0;}
.breadcrumbbox{
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 10px 20px;
    flex-direction: column;
    background: #3d8b2e1c;
}
.breadcrumbbox h3{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--secondary-font);
    color: #fff;
    font-size: 26px;
    display: none;
}
.breadcrumbbox ul{
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 50px;
    background: rgb(255 255 255 / 10%);
    flex-wrap: wrap;
}
.breadcrumbbox ul li{
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--light-green);
}
.breadcrumbbox ul li:not(:last-child):after{
    content: "/";
    color: var(--secondary-color);
}
.breadcrumbbox ul li a{color: var(--light-orange);font-weight: 500;}



header{
    position: relative;
    z-index: 2;
    transition: .3s linear;
    background: #fff;
}
header.fix{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px -6px;
}
header.fix .col-md-4{
    display: none;
}
.mainheader{
    padding: 0 50px;
}
.topheader{
    width:100%;
    background: var(--dark-green);
    overflow:hidden;
    position:relative;
    padding: 5px 0;
    text-align: center;
}

.topheader span{
    text-align: center;
    color:#fff;
    font-size: 12px;
    font-weight: 300
}

/* Delay */

.topheader span:nth-child(1){
    animation-delay:1s;
}

.topheader span:nth-child(2){
    animation-delay:2s;
}

.topheader span:nth-child(3){
    animation-delay:3s;
}


/* Animation */

@keyframes slideText{
    0%{
        opacity:0;
        transform:translateY(100%);
    }
    8%,30%{
        opacity:1;
        transform:translateY(0);
    }
    40%{
        opacity:0;
        transform:translateY(-100%);
    }
    100%{
        opacity:0;
        transform:translateY(-100%);
    }

}

.weblogo{display: block;margin: 10px auto;width: 130px;}
.weblogo img{width: 100%;}

.getsearch{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 50px;
    position: relative;
    z-index: 99;
    height: 100%;
}
.getsearch .searchbox{
    flex-basis: 70%;
    position: relative;
    z-index: 1;
}
.getsearch .searchbox input{
    padding: 6px 15px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    outline: none;
}
.getsearch .searchbox input::placeholder{
    color: #999;
    font-size: 14px;
}

.getsearch .searchbox input:focus{
    border: 1px solid var(--secondary-color);
}
.getsearch .searchbox input:focus::placeholder{
    color: var(--secondary-color);
}
.getsearch .searchbox button{
    outline: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
}
.getbtnactions{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    height: 100%;
    padding-right: 20px;
}
.getbtnactions .getbtn{display: flex;align-items: center;justify-content: center;position: relative;z-index: 1;}
.getbtnactions .getbtn i{
    color: #808080;
    line-height: 1;
    font-size: 24px;
}
.getbtnactions .getbtn.loginbtn i{
    font-size: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.getbtnactions .getbtn.getlogin{position: relative; z-index: 1;}
.getbtnactions .getbtn.getlogin:after{
    /* content: ""; */
    /* width: 2px; */
    /* height: 110%; */
    /* background: #dddddd; */
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* right: -13px; */
}
.getbtnactions .getbtn.loginbtn{
    flex-direction: column;
    align-items: end;
    padding-right: 35px;
}
.getbtnactions .getbtn.loginbtn span{
    font-size: 12px;
    display: block;
    line-height: 1.4;
    font-weight: 500;
}
.getbtnactions .getbtn.loginbtn span:nth-child(1){
}
.getbtnactions .getbtn.loginbtn span:nth-child(2){
    color: var(--primary-orange);
}
.getbtnactions .getbtn:hover i{
    color: var(--primary-orange);
}
.getbtnactions .getbtn .linkicon{
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
}
.getbtnactions .getbtn div{
    display: flex;
    color: var(--primary-green);
    position: absolute;
    top: -6px;
    right: -2px;
    font-size: 12px;
    font-weight: 800;
}
.getbtnactions .getbtn div span{color: var(--secondary-color);font-weight: 600;}
.getbtnactions .getbtn.getcart{
}
.getbtnactions .getbtn.getcart .linkicon{
    height: auto;
    width: auto;
    position: relative;
    z-index: 1;
    color: var(--secondary-color);
}
.wishlistcount,
.getbtnactions .getbtn.getcart .linkicon .cartcount{
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 12px;
    font-style: normal;
    background: var(--primary-color);
    width: 15px;
    height: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
}
.getbtnactions .getbtn div.wishlistcount{
    right: -12px;
    top: -3px;
}

.menubox{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.menubox .menulist{

}
.menubox .menulist .menulink{
    font-size: 14px;
    padding: 12px 0;
    white-space: nowrap;
    transition: .3s linear;
    letter-spacing: .5px;
    color: #121212;
    font-weight: 400;
    line-height: 1;
}
.menubox .menulist .menulink:hover{
}
.menubox .menulist .searchicon{color: #fff; margin-right: 15px;}
.menubox .menulist .searchicon:hover{color: var(--secondary-color);}
.submenu{
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 999;
    transition: .3s linear;
    padding: 10px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 100%;
}
.menulist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.submenu .sublist{
    padding: 5px 0;
}
.submenu .sublist .sublink{
    font-size: 15px;
    font-weight: 500;
    transition: .3s linear;
    color: #888;
    white-space: nowrap;
}
.submenu .sublist .sublink:hover{
    color: #000;
}
.submenu:before{
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: -5px;
    left: 50%;
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
}


.mobheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: position .3s linear;
    padding: 15px;
}
.mobheader.fix{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 4px 2px rgb(0 0 0 / 5%);
    z-index: 9;
}
.mobheader-left{}
.mobheader-left a{
    color: #333;
    font-size: 29px;
}
.mobheader-center{
}
.mobheader-center .moblogo{
    position: relative;
    z-index: 1;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 13px;
}
.mobheader-center .moblogo:before{
    content: "";
    /* width: 1px; */
    /* height: 70%; */
    /* background: #d5d5d5; */
    /* position: absolute; */
    /* right: -8%; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* z-index: 9; */
}
.mobheader-center .moblogo img{width: 100px;}
.mobheader-right{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.mobheader-right a{
    font-size: 20px;
    color: #000;
}
.mobheader-right a i{
    position: relative;
    z-index: 1;
}
.mobheader-right .getlogin{
    font-size: 24px;
    line-height: 1;
}
.mobheader-right a i .cartcount{
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .mobheader.fix .mobheader-left,
.mobheader.fix .mobheader-right{display: none;} */
.mobheader .searchbox{margin: 10px 0 0;flex: 0 1 100%;position: relative;z-index: 1;}
.mobheader .searchbox i{
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    color: #222;
    font-size: 18px;
}
.mobheader .searchbox .bi-search{
    left: 10px;
}
.mobheader .searchbox .bi-mic-fill{
    right: 12px;
}
.mobheader .searchbox .bi-mic-fill:after{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 25px;
    background: #ddd;
    transform: translateY(-50%);
}
.mobheader .searchbox input{
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 35px;
    border-radius: 8px;
    background: #fff;
    outline: none;
}
.mobheader .searchbox input::placeholder{
    color: #999;
    font-size: 16px;
}
.mobmenu{
    position: fixed;
    top: 0;
    left: -400px;
    width: 350px;
    height: 100%;
    z-index: 999;
    background: #fff;
    transition: .3s linear;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.mobmenu.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    left: 0;
}
.mobmenu .mobmenuclose{
    color: var(--secondary-color);
    position: absolute;
    right: 5px;
    top: 5px;
    color: #fff;
    transition: .3s linear;
    transition-delay: .3s;
}
.mobmenu.active .mobmenuclose{
    right: -25px;
}
.mobmenubox{
    height: calc(100% - 52px);
    overflow: auto;
}
.mobmenulist{
}
.mobmenulink{
    font-size: 15px;
    color: #000;
    font-weight: 400;
    letter-spacing: .5px;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s linear;
}
.mobmenulink:hover{
    color: var(--secondary-color);
}
.mobmenu form{
    width: 100%;
    background: #ff9a3c40;
    padding: 10px;
    position: relative;
    z-index: 1;
    height: 52px;
}
.mobmenu form button{
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    border: none;
    outline: none;
    background: transparent;
}
.mobmenu form button i{
    color: var(--light-green);
}

.mobmenu form input{
    padding: 5px 15px;
    width: 95%;
    background: transparent;
    border: 1px solid var(--light-orange);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 14px;
}
.mobsubmenu{
    background: var(--third-color);
    display: none;
}
.mobsublist{}
.mobsublink{
    padding: 10px 15px;
    border-bottom: 1px solid var(--forth-color);
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: .8px;
    font-weight: 300;
}
.mobsublink:hover{
    color: var(--secondary-color);
}
.shadow-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgb(0 0 0 / 70%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s linear;
    height: 100vh;
}
.shadow-wrapper.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.shadow-wrapper.active.loginactive{
    z-index: 99999;
}
.sidecart{
    position: fixed;
    top: 0;
    right: -610px;
    height: 100%;
    z-index: 9999;
    width: 400px;
    transition: .3s linear;
    background: #fff;
    overflow: hidden;
}
.sidecart.active{
    right: 0;
}
.innersidecart{
    height: 100%;
}

.checkoutend{
    height: 100%;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.checkoutend.active{
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.checkoutend h3{
    font-size: 18px;
    color: green;
    padding: 0 0 5px;
}
.checkoutend p{
    font-size: 13px;
    color: #666;
    letter-spacing: .5px;
}
.sidecart .sidecart-close{
    color: #000;
    font-size: 16px;
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 99;
    transition: .3s linear;
}
.sidecart .sidecart-close:hover{
    color: var(--secondary-color);
}

.empty-cart{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
    box-shadow: 0 2px 5px #e7e7e7;
    border-radius: 10px;
}
.empty-cart .carticon{
    font-size: 30px;
    position: relative;
    z-index: 1;
    color: var(--light-green);
    width: 60px;
    height: 60px;
    background: #5aa13c14;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty-cart .carticon div{
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 13px;
    width: 20px;
    height: 20px;
    background: var(--light-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}
.empty-cart .cartempty-title{
    color: #111;
    font-weight: 300;
    font-size: 20px;
    margin: 10px 0;
}
.empty-cart .continue{font-size: 13px;border: 1px solid var(--dark-green);color: var(--dark-green);padding: 5px 8px;font-weight: 400;transition: .3s linear;border-radius: 5px;background: rgba(90, 161, 60, 0.24);}
.empty-cart .continue:hover{background: #ff9a3c36;color: var(--light-orange);border-color: var(--light-orange);}

.sidecart-header{padding: 10px 15px;height: 7%;box-shadow: 0 1px 5px 2px rgb(0 0 0 / 10%);display: flex;align-items: center;justify-content: start;}
.sidecart-header h3{
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}
.sidecart-header span{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text1-color);
}

.sidecart-products{
    height: 76%;
    overflow: auto;
    padding: 10px 10px;
}
.sidecart-products .deliverytime{padding: 0 0 10px;}
.sidecart-products .deliverytime span{
    font-size: 13px;
    font-weight: 500;
}
.sidecart-products .deliverytime span i{color: green;}
.sidecart-products::-webkit-scrollbar{
    width: 5px;
    background-color: #222;
}
.sidecart-products::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}
.sidecart-products .box{
    display: flex;
    gap: 10px;
    padding: 5px 0;
    width: 100%;
    align-items: start;
    justify-content: start;
}
.sidecart-products .box figure{
    margin: 0;
    border: 1px solid #87ceeb38;
    border-radius: 5px;
    background: #87ceeb1c;
    flex: 0 0 22%;
}
.sidecart-products .box figure img{
    width: 100%;
}
.sidecart-products .box .content{position: relative;z-index: 1;flex: 0 0 78%;overflow: hidden;}
.sidecart-products .box .content h4{
    font-size: 16px;
    color: #222;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 0 5px;
    width: 100%;
}
.sidecart-products .box .content h4:after{
    content: "";
}
.sidecart-products .box:hover .content h4:after{
    width: 100%;
}
.sidecart-products .box .content .sidecart-prosize{}
.sidecart-products .box .content .sidecart-prosize span{
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}
.sidecart-products .box .content .pricebox{
    line-height: 1;
    color: #666;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    right: 10px;
}
.sidecart-products .box .content .pricebox .qty{}
.sidecart-products .box .content .pricebox .newprice{
    color: var(--text-color);
    font-weight: 500;
    margin-right: 10px;
    font-size: 14px;
}
.sidecart-products .box .content .pricebox .oldprice{
    text-decoration: line-through;
    font-weight: 400;
    font-size: 12px;
}
.sidecart-products .box .content .pricebox .discount{
    display: none;
}
.sidecart-products .box .content .qty-n-remove{
    /* display: flex; */
    /* align-items: end; */
    /* gap: 5px; */
}
.sidecart-products .box .content .qty-n-remove .qty{
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #ddd;
    margin-left: 2px;
}
.sidecart-products .box .content .qty-n-remove .qty label{
    padding: 1px 2px;
    color: #000;
    cursor: pointer;
    width: 20px;
    text-align: center;
    user-select: none;
}
.sidecart-products .box .content .qty-n-remove .sidecart-qty{
    width: 20px;
    height: 26px;
    outline: none;
    text-align: center;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    line-height: 1;
    border: none;
}
.sidecart-products .box .content .qty-n-remove .sidecart-qty::-webkit-outer-spin-button,
.sidecart-products .box .content .qty-n-remove .sidecart-qty::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.sidecart-products .box .content .qty-n-remove .sidecart-remove{
    width: 25px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    color: #fff;
    border-radius: 3px;
    transition: .3s linear;
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.sidecart-products .box .content .qty-n-remove .sidecart-remove:hover{
    background: #cb0000;
}
.sidecart-products .box .content .qty-n-remove .sidecart-remove.loading:before{
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50px;
    border-top: 2px solid transparent;
    animation: delloading .5s linear infinite;
}
@keyframes delloading{
    0%{transform: rotate(-360deg);}
}
.sidecart-footer{
    padding: 10px;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 999;
    box-shadow: 0 -1px 15px -2px #ddd;
}
.sidecart-footer .sidecart-actbtns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.sidecart-footer .actbtn{
    background: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    transition: .3s linear;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    flex: 1;
    border: 2px solid #000;
}
.sidecart-footer .actbtn:hover{color: #000;background: #fff;border-color: #000;}
.sidecart-footer .actbtn.loading:before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
    );
    animation: loading-bg 1s infinite;
}
@keyframes loading-bg {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.sidecheckoutaddress{}
.sidecheckoutaddress .addressbox{
    position: relative;
    z-index: 1;
    padding-left: 25px;
    padding-bottom: 10px;
}
.sidecheckoutaddress .addressbox .changeaddress{
    font-size: 10px;
    position: absolute;
    z-index: 9;
    right: 10px;
    top: 0;
    color: red;
    font-weight: 500;
    letter-spacing: .5px;
}
.sidecheckoutaddress .addressbox i{
    color: green;
    position: absolute;
    left: 0;
    top: 5px;
}
.sidecheckoutaddress .addressbox span{
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}
.sidecheckoutaddress .addressbox p{
    font-size: 12px;
    color: #333;
    font-weight: 400;
    white-space: nowrap;
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    width: 80%;
    overflow: hidden;
}

.sidecart-total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--third-color);
    margin: 0 0 20px;
}
.sidecart-total span{
    color: var(--text-color);
    font-size: 18px;
}
.sidecart-total span:nth-child(1){}
.sidecart-total span:nth-child(2){}


.checkoutaddress{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    box-shadow: 0 -2px 0 300px rgb(0 0 0 / 50%);
    padding: 15px;
    background: #f2f2f2;
    height: 80%;
    border-radius: 10px 10px 0 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.checkoutaddress.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.checkoutaddress::before{}
.devicelocation{}
.checkoutaddress .address-title{
    padding: 0 0 5px;
}
.checkoutaddress .address-title h3{
    font-size: 13px;
    color: #000;
}
.checkoutaddress .addnewaddress{
    font-size: 13px;
    padding: 8px 7px;
    border-radius: 5px;
    background: green;
    color: #fff;
    font-weight: 500;
    letter-spacing: .5px;
}
.checkoutaddress .savedadresses{
    background: #fff;
    padding: 10px;
    margin: 10px 0 0;
    border-radius: 4px;
}
.checkoutaddress .savedadresses h4{
    font-size: 13px;
    color: #999;
    font-weight: 400;
    padding: 0 0 10px;
}
.checkoutaddress .savedadresses .addressbox{
    position: relative;
    z-index: 1;
    padding-left: 25px;
    margin: 0 0 10px;
    transition: .3s linear;
    border: 1px solid #0000000a;
    /* box-shadow: 0 0 5px -1px rgb(119 119 119 / 15%); */
    padding: 5px 5px 5px 28px;
    border-radius: 4px;
}
.checkoutaddress .savedadresses .addressbox:hover,
.checkoutaddress .savedadresses .addressbox.active{
    border: 1px solid #87ceeb42;
    border-radius: 4px;
    padding: 5px 5px 5px 28px;
    background: #87ceeb17;
}

.checkoutaddress .savedadresses .addressbox i{
    color: green;
    position: absolute;
    left: 5px;
    top: 10px;
    transition: .3s linear;
}
.checkoutaddress .savedadresses .addressbox:hover i,
.checkoutaddress .savedadresses .addressbox.active i{
    left: 5px;
    top: 10px;
}
.checkoutaddress .savedadresses .addressbox .titletag{
    color: #000;
    font-size: 13px;
    font-weight: 600;
}
.checkoutaddress .savedadresses .addressbox .removeaddress{
    position: absolute;
    right: 5px;
    top: 5px;
    transition: .3s linear;
    color: #ccc;
}
.checkoutaddress .savedadresses .addressbox .removeaddress.remove:before{
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50px;
    border: 2px solid skyblue;
    border-top: 2px solid #f4fbfd;
    animation: removecircle .7s linear infinite;
}
@keyframes removecircle{
    0%{transform: rotate(-360deg)}
}
.checkoutaddress .savedadresses .addressbox p{
    font-size: 12px;
    color: #666;
    font-weight: 300;
}

.checkoutaddress .checkaddclose{
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    z-index: 99;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.filladdress-wrapper{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    /* box-shadow: 0 -2px 0 300px rgb(0 0 0 / 40%); */
    padding: 33% 0 0;
    background: #00000061;
    height: 100%;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
}
.filladdress-wrapper.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.filladdress{height: 100%;padding: 15px 15px 30px;background: #fff;border-radius: 10px 10px 0 0;overflow: auto;}
.filladd-map{
    padding: 0 0 15px;
    display: none;
}
.filladd-map iframe{
    width: 100%;
    height: 180px;
    border-radius: 5px;
}
.filladdress .fillfields{}
.filladdress .fillfields .addressmsg{}
.filladdress .fillfields .addressmsg .alertdiv{
    padding: 5px;
    border-radius: 3px;
    text-align: center;
}
.filladdress .fillfields .addressmsg .alertdiv p{
    font-size: 13px;
}
.filladdress .fillfields .addressmsg .alertdiv.failed{
    background: #ff000021;
}
.filladdress .fillfields .addressmsg .alertdiv.failed p{
    color: red;
}
.filladdress .fillfields .addressmsg .alertdiv.success{
    background: #00800029;
}
.filladdress .fillfields .addressmsg .alertdiv.success p{
    color: green;
}
.filladdress .fillfields h3{
    font-size: 14px;
    font-weight: 500;
    color: #000;
    padding: 0 0 10px;
}
.filladdress .fillfields form{}
.filladdress .fillfields form .fields{
    position: relative;
    z-index: 1;
    margin: 0 0 15px;
}
.filladdress .fillfields form .fields span{
    font-size: 12px;
    font-weight: 300;
    color: #888;
    letter-spacing: .5px;
    display: block;
    padding: 0 0 5px;
}
.filladdress .fillfields form .fields > label{
    position: absolute;
    top: -8px;
    left: 10px;
    font-size: 12px;
    letter-spacing: .5px;
    color: #777;
    font-weight: 300;
    background: #fff;
    padding: 0 4px;
}
.filladdress .fillfields form .fields > select,
.filladdress .fillfields form .fields > input{
    width: 100%;
    padding: 10px 10px 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: transparent;
    outline: none;
    font-size: 14px;
}
.filladdress .fillfields form .fields:first-child{margin: 0 0 25px;}
.filladdress .fillfields form .fields .field{
    display: inline;
}
.filladdress .fillfields form .fields .field label{
    font-size: 12px;
    color: #666;
    border: 1px solid #ddd;
    padding: 3px 8px;
    border-radius: 3px;
}
.filladdress .fillfields form .fields .field input{}
.filladdress .fillfields form .fields .field input:checked + label{
    background: green;
    color: #fff;
}
.filladdress .fillfields form .fields-btn{}
.filladdress .fillfields form .fields-btn button{
    background: green;
    border: none;
    outline: none;
    width: 100%;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 12px;
    letter-spacing: 1px;
}
.filladdress .fillfields form .fields-btn button:hover{}
.filladdress .filladdressclose{
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    z-index: 102;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}


.searchpanel{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    z-index: 9999;
    transition: .3s linear;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #07273c85;
}
.searchpanel.active{
    transform: scaleY(1);
}
.searchpanel .searchpanelclose{
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
    transition: .3s linear;
}
.searchpanel .searchpanelclose:hover{
    color: var(--secondary-color);
}
.searchpanel form{
    width: 50%;
    display: flex;
    align-items: center;
}
.searchpanel form input{
    flex-basis: 94%;
    height: 50px;
    padding: 10px 15px;
    outline: none;
    border: none;
    background: var(--third-color);
    color: #fff;
}
.searchpanel form input::placeholder{
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 300;
}
.searchpanel form button{
    flex-basis: 6%;
    height: 50px;
    outline: none;
    border: none;
    background: var(--secondary-color);
    color: #fff;
}
.searchpanel form button:hover{}



/* ============== slider widget start ============= */
.sliderwidget{
    width: 100%;
    padding: 0 50px;
}
.sliderwidget .mainslider{}
.sliderwidget div{}
.sliderwidget div img{width: 100%;color: #508D30;}
.mainslider .slick-arrow{z-index: 1;}
.mainslider .slick-arrow:before{
    color: #fff;
}
.mainslider .slick-prev{left: 2%;}
.mainslider .slick-next{right: 2%;}

/* ============== slider widget end ============= */

.sale-offer-timer-widget{
    padding: 30px 50px;
}
.sale-leftbox{
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px #e7e7e7;
}
.sale-offer-timer{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 15px;
    flex-basis: 50%;
    gap: 20px;
}
.sale-offer-timer:before{
    content: "";
    width:  2px;
    height: 80%;
    position: absolute;
    top:  50%;
    transform: translateY(-50%);
    right: 25px;
    background: #eee;
}
.sale-offer-timer h3{
    flex-basis: 15%;
    font-weight: 300;
    color: var(--primary-green);
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}
.sale-offer-timer h3 span{
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
}
.timer-widget{
    display: flex;
    align-items: center;
    gap: 10px;
}
.timer-widget .timerbox{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timer-widget .timerbox span{
    color: var(--light-orange);
}
.timer-widget .timerbox span:nth-child(1){
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
}
.timer-widget .timerbox span:nth-child(2){
    font-size: 14px;
}

.salebanner{
    flex-basis: 48%;
}
.salebanner img{width: 100%;}


.trust-badges{
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px #e7e7e7;
    padding: 15px;
    height: 100%;
}
.trust-badges .trustbadges-box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.trust-badges .trustbadges-box i{
    flex-basis: 30px;
    height: 30px;
    background: #5aa13c29;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    flex: 0 0 30px;
    color: var(--light-green);
}
.trust-badges .trustbadges-box span{
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-color);
}

/* ============== shop by category widget start ============= */

.shopbycategory{
    padding: 20px 50px;
    position: relative;
    z-index: 1;
}
.shopbycategory .shopbycat-menu{
    padding: 0 0 40px;
}
.shopbycategory .shopbycat-menu ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.shopbycategory .shopbycat-menu ul li{}
.shopbycategory .shopbycat-menu ul li a{
    line-height: 1;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-color);
    transition: .3s linear;
}
.shopbycategory .shopbycat-menu ul li a:focus,
.shopbycategory .shopbycat-menu ul li a.active,
.shopbycategory .shopbycat-menu ul li a:hover{
    background: var(--light-green);
    border-color: var(--light-green);
    outline: none;
    color: #fff;
}
.shopbycategory .maintitle{}
.shopbycategory .maintitle h3{}
.shopcategory{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.shopcategory .loading-box{
    text-align: center;
    width: 100%;
}
.shopcategory .loading-box span{
    width: 30px;
    height: 30px;
    border: 3px solid var(--light-orange);
    border-radius: 50px;
    border-top: 3px solid transparent;
    animation: loading 0.5s linear infinite;
    display: inline-block;
}
@keyframes loading{
    0%{transform: rotate(-360deg);}
}
.shopcategory .shopcatbox{
    flex: 0 0 12%;
    text-align: center;
    display: inline-block;
    transition: .3s linear;
    border: 1px solid #eee;
    padding: 15px;
}
.shopcategory .shopcatbox:hover{
}
.shopcategory .shopcatbox img{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 5%;
    /* border: 1px solid #99999970; */
}
.shopcategory .shopcatbox p{
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 0 0;
    text-align: center;
}

/* ============== shop by category widget end ============= */


/* ============== shortbanner widget start ============= */
.shortbanner{
    padding: 0 30px 50px;
}
.shortbannerbox{
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}
.shortbannerbox:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #0000000f;
    z-index: 1;
}
.shortbannerbox img{width: 100%;}
.shortbannerbox .overlay{
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}
.shortbannerbox .overlay span{
    font-weight: 300;
}
.shortbannerbox .overlay h3{
    font-size: 18px;
    font-weight: 600;
    padding: 5px 0 15px;
}
.shortbannerbox .overlay a{
    font-size: 14px;
    display: inline-flex;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 50px;
    align-items: center;
    background: #fff;
}
.shortbannerbox .overlay a img{width: 12px;margin-left: 5px;}


/* ============== shortbanner widget end ============= */


/* ============== banners section widget end ============= */
.offerbanner-widget{
    padding: 0 50px 30px ;
}
.offerbanner-widget .offerbanner-box{
    overflow: hidden;
}
.offerbanner-widget .offerbanner-box img{
    width: 100%;
}
/* ============== banners section widget end ============= */
.homecategory-widget{
    padding: 0 65px;
    margin: 0 0 40px;
}
.homecategory-widget .homecatrow{
    padding: 30px;
    border-radius: 10px;
}
/* .homecategory-widget.home-decor .row{
    background: #5aa13c1f;
}
.homecategory-widget.furniture .row{
    background: #e96b1221;
} */
.homecategory-wrapper .homecategory-widget:nth-child(1) .homecatrow{
    background: #5aa13c1f;
}
.homecategory-wrapper .homecategory-widget:nth-child(2) .homecatrow{
    background: #e96b1221;
}
.homecategory-wrapper .homecategory-widget:nth-child(3) .homecatrow{
    background: #dbebff;
}
.homecategory-wrapper .homecategory-widget:nth-child(4) .homecatrow{}
.homecategory-wrapper .homecategory-widget:nth-child(5) .homecatrow{}
.homecategory-widget .homecat-box{
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 1px 2px 0 #0000000d;
}
.homecategory-widget .homecat-box figure{
    margin: 0;
}
.homecategory-widget .homecat-box figure img{width: 100%;}
.homecategory-widget .homecat-box span{
    display: block;
    padding: 10px;
    color: var(--text-color);
}
.homecategory-widget{}
.homecategory-widget .newbox{
    background: #fff;
    width: 95%;
}

.homecategoryslide .slick-track{
    margin-left: 0;
}

.homecategory-widget .slick-arrow{
    z-index: 1;
    transition: .5s;
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 50px;
}

.homecategory-widget .slick-arrow.slick-prev:before,
.homecategory-widget .slick-arrow.slick-next:before{
    color: #fff;
    font-family: revert;
    display: inline-block;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 1;
    color: #fff;
    font-size: 18px;
}
.homecategory-widget .slick-arrow.slick-prev:before{
    content: "\f12c";
    font-family: bootstrap-icons;
    font-size: 26px;
}
.homecategory-widget .slick-arrow.slick-next:before{
    content: "\f135";
    font-family: bootstrap-icons;
    font-size: 26px;
}

.homecategory-widget .slick-arrow.slick-prev{left: 0px;}
.homecategory-widget .slick-arrow.slick-next{right: 0;}


/* ============== new arrivals widget end ============= */

.newarrivals{
    padding: 30px 50px;
}
.newarrivals .slick-arrow{
    z-index: 1;
    transition: .5s;
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50px;
}

.newarrivals .slick-arrow.slick-prev:before,
.newarrivals .slick-arrow.slick-next:before{
    color: #fff;
    font-family: revert;
    display: inline-block;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 1;
    color: #fff;
    font-size: 18px;
}
.newarrivals .slick-arrow.slick-prev:before{
    content: "\f12c";
    font-family: bootstrap-icons;
    font-size: 26px;
}
.newarrivals .slick-arrow.slick-next:before{
    content: "\f135";
    font-family: bootstrap-icons;
    font-size: 26px;
}

.newarrivals .slick-arrow.slick-prev{left: 0px;}
.newarrivals .slick-arrow.slick-next{right: 0;}
.newarrivals .maintitle{}
.newarrivals .maintitle h2{}
.newarrivals #discoverslide .slick-track{
    margin-left: 0;
}
.newarrivals #discoverslide .newbox{
    width: 95%;
}
.arrivalrows{
    display: flex;
    align-items: start;
    overflow: auto;
}
.arrivalrows::-webkit-scrollbar{height: 0;}
.searchproducts{
        flex-wrap: wrap;
    }
.newbox{
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 15px;
    width: 96%;
    box-shadow: 0 4px 6px 1px #0000001a,0 2px 4px -2px #0000001a;
    padding: 10px 10px 15px;
    border-radius: 5px;
    background: #fff;
}
.arrivalrows.searchproducts .newbox{
    flex: 1 0 15%;
}
.newbox:last-child{
    margin-right: 0;
}
.newbox figure{
    width: 100%;
    overflow: hidden;
    margin: 0;
    margin: 0 0 10px;
    height: 280px;
    position: relative;
    z-index: 1;
}
.newbox figure .wishlisticon{
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 9;
    font-size: 20px;
    color: #999;
}
.newbox figure .wishlisticon.active{
    color: var(--primary-orange);
}
.newbox figure img{
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: contain;
}
.newbox span{display: inline-block;}
.newbox .title{
          /* Limit to 3 lines */
          font-size: 14px;
          font-weight: 300;
          color: var(--text-color);
          position: relative;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          line-height: 1.3;
          width: 100%;
          margin: 0 0 10px;
}
.newbox .unit{display: none;}
.newbox .discount{
    font-size: 15px;
    font-weight: 400;
    color: var(--dark-green);
    text-transform: uppercase;
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e96b12;
    color: #fff;
    font-size: 12px;
    padding: 5px;
    border-radius: 3px;
    z-index: 9;
}
.newbox .amount{
    padding: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0px 10px;
    flex-wrap: wrap;
}
.newbox .amount .amt{
    display: flex;
    align-items: center;
    justify-content: start;
}
.newbox .amount .price{
    font-size: 20px;
    font-weight: 400;
    color: #111;
}
.newbox .amount .oldprice{
    font-weight: 400;
    font-size: 15px;
    color: #919191;
    text-decoration: line-through;
}
.newarrivals .newbox{width: 96%;}
.actionbtn{
}
.actionbtns{
    display: flex;
    align-items: center;
    gap: 8px;
}
.actionbtns a{
    width: 50%;
    text-align: center;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1;
    padding: 10px;
    transition: .3s linear;
    border: 1px solid var(--dark-green);
    background: rgba(90, 161, 60, 0.24);
    color: var(--dark-green);
}
.actionbtns a.addcart{}
.actionbtns a.buynow{
    background: #ff9a3c36;
    color: var(--light-orange);
    border-color: var(--light-orange);
}
.actionbtns a:hover{background: #ff9a3c36;color: var(--light-orange);border-color: var(--light-orange);}
.actionbtns a.buynow:hover{
    border: 1px solid var(--dark-green);
    background: rgba(90, 161, 60, 0.24);
    color: var(--dark-green);
}
.actionbtns-wish{
    padding: 10px 0 0;
}
.actionbtns-wish a{
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 10px;
    border-radius: 4px;
    line-height: 1;
    background: #f5f5f5;
    transition: .3s linear;
}
.actionbtns-wish a:hover{
    background: var(--primary-orange);
    color: #fff;
}
.newbox button{
    border: 2px solid #000;
    font-size: 14px;
    font-weight: 600;
    padding: 2px 10px;
    background: none;
    color: #000;
    transition: .3s linear;
}
.newbox button:hover{
    background: #000;
    color: #fff;
}
/* ============== new arrivals widget end ============= */


.aboutwidget{
    padding: 40px 50px;
}
.aboutbanner{margin: 0 0 40px;}

.aboutbanner img{width: 100%;}
.trusted-numbers{
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px #e7e7e7;
    padding: 15px;
    margin: 30px 0;
}
.trusted-numbers .trusted-numbers-box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.trusted-numbers .trusted-numbers-box i{
    flex-basis: 30px;
    height: 30px;
    background: #5aa13c29;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    flex: 0 0 30px;
    color: var(--light-green);
}
.trusted-numbers .trusted-numbers-box span{
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-color);
}
.leftaboutwidget{
    position: relative;
    z-index: 1;
}
.leftaboutwidget:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    border: 2px solid var(--light-green);
    border-left: 30px solid var(--light-green);
    border-bottom: 30px solid var(--light-green);
    border-radius: 20px;
}
.leftaboutwidget img{
    width: 100%;
    border-radius: 20px;
}
.rightaboutwidget{padding-right: 35px;}
.rightaboutwidget h3{
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    color: var(--light-green);
    font-weight: 300;
}
.rightaboutwidget h3:after{
    content: "";
    width: 100px;
    height: 1px;
    background: var(--light-green);
    display: block;
    margin: 5px 0 0;
}
.rightaboutwidget p{
    color: var(--text-color);
    font-weight: 300;
    padding: 0 0 20px;
    letter-spacing: .5px;
    font-size: 15px;
    text-align: justify;
}
.rightaboutwidget a{
    margin: 10px 0 0;
    transform: translateX(15px);
}
.aboutcontinfo{
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 80%;
}
.aboutcontinfo .icon{flex-basis: 50px;background: var(--light-orange);aspect-ratio: 1/1;border-radius: 50px;display: flex;align-items: center;justify-content: center;color: #fff;font-size: 18px;position: relative;z-index: 1;}
.aboutcontinfo .icon:before{
    content: "";
}
.aboutcontinfo:hover .icon:before{
    animation: dashedrotate 5s linear infinite reverse;
}
@keyframes dashedrotate{
    0%{transform: translate(-50%, -50%) rotate(360deg);}
}
.aboutcontinfo .icon i{
    font-size: 22px;
}
.aboutcontinfo .content{}
.aboutcontinfo .content span{
    font-size: 15px;
    letter-spacing: .5px;
    font-weight: 300;
    color: var(--text-color);
}
.aboutcontinfo .content h2{
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 18px;
}
.servicewidget{
    padding: 60px 0;
    background-color: #031D2E;
}
.servicewidget .maintitle{}
.servicewidget .maintitle h2{}
.servicewidget .maintitle p{}
.serbox{
    background: var(--primary-color);
    padding: 40px 20px;
    text-align: center;
    margin: 0 0 20px;
}
.serbox figure{
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
}
.serbox:hover figure{
    background: var(--secondary-color);
}
.serbox figure:before{
    content: "";
    width: 120%;
    height: 120%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed #4c4c4c;
    border-radius: 50%;
}
.serbox:hover figure:before{
    animation: serrotate 8s linear infinite reverse;
    border-color: var(--secondary-color);
}
@keyframes serrotate{
 0%{transform: translate(-50%, -50%) rotate(360deg);}   
}
.serbox figure img{}
.serbox .content{}
.serbox .content h3{
    color: var(--text-color);
    font-family: var(--secondary-font);
    font-size: 24px;
    letter-spacing: .5px;
    margin: 0 0 30px;
    position: relative;
    z-index: 1;
}
.serbox .content h3:before{
    content: "";
    width: 50px;
    border-bottom: 2px solid var(--secondary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.serbox .content p{
    color: var(--text-color);
    font-weight: 200;
    font-size: 14px;
    letter-spacing: .3px;
}
.serbox .content a{
    margin: 20px 0 0;
    color: var(--secondary-color);
    font-size: 15px;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: .3s linear;
}
.serbox .content a:before{
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--secondary-color);
}
.serbox .content a:hover{color: var(--text-color);}


.productswidget{
    padding: 30px 50px;
}
.productswidget .mobfilterhead{
    border: 1px solid #eee;
    margin: 0 0 20px;
    border-radius: 5px;
    padding: 5px;
}
.productswidget .mobfilterhead .filtericon{
    background: #eee;
    display: inline-block;
    padding: 5px;
    border-radius: 4px;
    width: 30px;
    text-align: center;
}
.productswidget .maintitle{}
.productswidget .maintitle h2{}
.productswidget .maintitle p{}

.product-filter{
    box-shadow: 0 2px 10px rgb(0 0 0 / 15%);
    border-radius: 10px;
    padding: 20px;
}
.product-filter .mobclosefilter{
    position:absolute;
    top: 10px;
    right: 10px;
    z-index:99;
    line-height: 1;
    font-size: 24px;
    display: none;
}
.product-filter > h3{
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-green);
    padding: 0 0 10px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 15px;
}
.product-filter .filterbox{
    padding: 0 0 15px;
}
.product-filter .filterbox h4{
    font-size: 16px;
    color: var(--text-color);
    padding: 0 0 5px;
    font-weight: 400;
}
.product-filter .filterbox .filterboxinner{}
.product-filter .filterbox .filterboxinner label{
    display: block;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 5px;
    cursor: pointer;
    color: #7f7f7f;
    user-select: none;
}
.product-filter .filterbox .filterboxinner label:before{
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-filter .filterbox .filterboxinner label input{
    display: none;
}
.product-filter .filterbox .filterboxinner label:has(input:checked):before{
    content: "\f272";
    font-family: bootstrap-icons;
    background: var(--primary-orange);
    color: #fff;
    border-color: var(--light-orange);
}
.product-filter .filterbox .filterboxinner label:has(input:checked){
    color: var(--primary-orange);
}
.product-filter .filterbox .filterboxinner{
    position: relative;
    z-index: 1;
}

.product-filter .filterbox.price-filter .filterboxinner{}







.product-filter .filterbox.price-filter .filterboxinner{
    background:#fff;
    position:relative;
    margin: 10px 0;
}

/* Price Text */

.product-filter .filterbox.price-filter .price-values{
    font-size: 14px;
    font-weight:600;
    color: var(--light-green);
    text-align:center;
    position: absolute;
    top: -33px;
    right: 0;
}

/* Slider */

.product-filter .filterbox.price-filter .slider{
    height:6px;
    background:#e5ddd3;
    border-radius:50px;
    position:relative;
}

.product-filter .filterbox.price-filter .slider .progress{
    height:100%;
    position:absolute;
    left:0%;
    right:0%;
    background:var(--light-green);
    border-radius:50px;
}

/* Range Inputs */

.product-filter .filterbox.price-filter .filterboxinner input[type="range"]{
    position:absolute;
    left: 0px;
    top: -7px;
    width: 100%;
    pointer-events:none;
    appearance:none;
    background:none;
}

/* Thumb */

.product-filter .filterbox.price-filter .filterboxinner input[type="range"]::-webkit-slider-thumb{
    height:20px;
    width:20px;
    border-radius:50%;
    background:var(--primary-green);
    border:3px solid #fff;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
    pointer-events:auto;
    appearance:none;
    cursor:pointer;
}

.product-filter .filterbox.price-filter .filterboxinner input[type="range"]::-moz-range-thumb{
    height:20px;
    width:20px;
    border:none;
    border-radius:50%;
    background:#8b6b4d;
    pointer-events:auto;
    cursor:pointer;
}





.product-filter .filterbox.colors-filter{}
.product-filter .filterbox.colors-filter .filterboxinner{}
.product-filter .filterbox.colors-filter .filterboxinner label{
    display: inline-block;
    margin-right: 5px;
}
.product-filter .filterbox.colors-filter .filterboxinner label:before{
    width: 30px;
    height: 30px;
    border-radius: 50px;
}

.product-filter .filterbox.colors-filter .filterboxinner label:nth-child(1):before{
    background: red;
}
.product-filter .filterbox.colors-filter .filterboxinner label:nth-child(2):before{
    background: green;
}
.product-filter .filterbox.colors-filter .filterboxinner label:nth-child(3):before{
    background: blue;
}
.product-filter .filterbox.colors-filter .filterboxinner label:nth-child(4):before{
    background: balck;
}



.sidesubcategory{
    height: 100%;
    background: #f6f6f6;
    border-radius: 3px;
}
.sidesubcat-link{
    text-align: center;
    border-radius: 2px;
    padding: 5px;
    transition: .3s linear;
}
.sidesubcat-link:hover{
    background: #eee;
}
.sidesubcat-link.active{
    background: #a4088014;
}

.sidesubcat-link img{
    width: 30px;
    padding: 0 0 8px;
}
.sidesubcat-link span{
    font-size: 11px;
    color: #999;
    letter-spacing: .5px;
    font-weight: 400;
    width: 100%;
    display: inline-block;
    overflow-wrap: anywhere;
    line-height: 1;
    transition: .3s linear;
    display: block;
}
.sidesubcat-link.active span{
    color: var(--primary-color);
}
.sidesubcat-link:hover span{
    color: #000;
}
.probox{
    margin: 0 0 20px;
}
.probox figure{margin: 0; position: relative; z-index: 1;}
.probox:hover figure{
    background: var(--secondary-color);
}
.probox figure{overflow: hidden;}
.probox figure .actionbtns{
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 6px;
    transition: .3s linear;
}
.probox:hover figure .actionbtns{
    bottom: 0;
}
.probox figure .actionbtns .actbtn{
    transition: .3s linear;
}
.probox figure .actionbtns .wishlist{
    flex-basis: 15%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 18px;
    border-radius: 3px;
    background: #ff8527;
    display: none;
}
.probox figure .actionbtns .addcart{
    flex-basis: 80%;
    padding: 8px;
    border-radius: 3px;
    background: #ff8527;
    color: #fff;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}
.probox figure .actionbtns .actbtn:hover{
    background: var(--primary-color);
}
.probox figure img{width: 100%;}
.probox .content{padding: 10px 0 0;}
.probox .content .ratings{}
.probox .content .ratings i{color: var(--secondary-color);font-size: 12px;}
.probox .content .ratings i:last-child{color: var(--third-color);}
.probox .content a{
    color: var(--text-color);
    font-family: var(--secondary-font);
    font-size: 24px;
    letter-spacing: .5px;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    line-height: 1.3;
}
.probox .content .price{
    color: var(--text-color);
    font-weight: 200;
    font-size: 14px;
    letter-spacing: .3px;
    padding: 10px 0;
}
.probox .content .price span{
    font-size: 14px;
}
.probox .content .price .newprice{
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
}
.probox .content .price .oldprice{
    color: var(--text1-color);
    font-weight: 600;
    font-size: 14px;
    margin-left: 5px;
    text-decoration: line-through;
}
.probox .content .price .off{
    color: var(--secondary-color);
    font-weight: 400;
}


.choosewidget{
    background: url('../images/choosebg.webp');
    background-size: cover;
    padding: 50px 0;
}
.choosewidget .maintitle{}
.choosewidget .maintitle h2{}
.choosewidget .maintitle p{}



.reviewwidget{
    padding: 50px 0 80px;
    background: #031D2E;
}
.reviewwidget .maintitle{}
.reviewwidget .maintitle h2{}
.reviewwidget .maintitle p{}
.reviewbox{
}
.reviewbox .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    z-index: -1;
    color: #5e748224;
}
.reviewbox figure{
    width: 80px;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin: 0 auto 20px;
}
.reviewbox figure img{
    width: 30px;
}
.reviewbox figure .overlay{
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.reviewbox p{
    font-weight: 300;
    color: var(--text-color);
    letter-spacing: .5px;
    font-size: 14px;
}
.reviewbox h3{
    margin: 20px 0 0;
    font-size: 24px;
    color: #fff;
}
.reviewbox span{
    color: var(--secondary-color);
    font-size: 15px;
}

.reviewwidget .slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    width: auto;
    display: flex;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
    gap: 10px;
}
.reviewwidget .slick-dots li{
    width: 10px;
    height: 10px;
    background: var(--third-color);
    border-radius: 6px;
    display: block;
    transition: .2s linear;
}
.reviewwidget .slick-dots li.slick-active{
    background: var(--secondary-color);
}
.reviewwidget .slick-dots li button{
    display: none;
}


.testimonials-widget{
    padding: 0 60px;
}
.testimonials-widget .row.testimonial-rows{
    background: #f5822a0a;
    padding: 40px;
    border-radius: 10px;
}
.testimonials-widget .maintitle{}
.testimonials-widget .maintitle h2{}

.testimonials-widget .reviewbox{
    overflow: hidden;
    height: 100%;
    padding: 0 10px;
    margin: 0 15px;
    transition: .3s ease-in;
    position: relative;
    z-index: 1;
    text-align: center;
}
.testimonials-widget .reviewbox > i{
    font-size: 30px;
    color: var(--secondary-color);
}
.testimonials-widget:hover .reviewbox > i{
    color: var(--primary-color);
}
.testimonials-widget .reviewbox p{
    font-weight: 300;
    font-size: 16px;
    transition: .3s ease-in;
    /* box-shadow: 0 2px 10px rgb(0 0 0 / 15%); */
    padding: 15px;
    /* background: #e96b1214; */
    color: var(--text-color);
}
.testimonials-widget .reviewbox .info{
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 10px auto 0;
    padding-left: 40px;
}
.testimonials-widget .reviewbox .info i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 30px;
    color: var(--dark-green);
    line-height: 1;
}
.testimonials-widget .reviewbox .info h3{transition: .3s ease-in;font-size: 16px;font-weight: 600;color: #333;}
.testimonials-widget .reviewbox .info span{
    font-size: 14px;
    letter-spacing: 1px;
    transition: .3s ease-in;
    color: #666;
    font-weight: 400;
}


.blogswidget{
    padding: 40px 50px;
}
.blogswidget .maintitle{}
.blogswidget .maintitle h2{}
.blogswidget .maintitle p{}

.blogbox{
    margin: 0 0 20px;
    background: #fff;
}
.blogbox figure{margin: 0;position: relative;width: 100%;height: 200px;overflow: hidden;}
.blogbox figure .pagebtn{
    position: absolute;
    bottom: 5px;
    right: 10px;
    background: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    padding: 3px 6px;
    font-weight: 600;
}
.blogbox figure .pagebtn i{margin-right: 5px;}
.blogbox figure img{width: 100%;height: 100%;object-fit: cover;}
.blogbox .content{padding: 10px 0 0;}
.blogbox .content span{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 5px;
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 5px;
}
.blogbox .content span i{
    font-size: 15px;
    color: var(--secondary-color);
    margin-right: 5px;
}
.blogbox .content h3{
    font-size: 16px;
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.5;
}
.blogbox:hover .content h3{
    color: #000;
}
.blogbox .content p{
    color: var(--text-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    padding: 0 0 15px;
}


footer{
    position: relative;
    padding: 50px 20px 0;
    background: #f2f2f2;
}

footer .footerlogo{}
footer .footerlogo .flogolink{
    margin: 0 0 20px;
}
footer .footerlogo .flogolink img{width: 70%;}
footer .footerlogo p{color: #fff;font-weight: 300;padding-right: 40px;}
.social{
    display: flex;
    align-items: center;
    gap: 10px;
}
.social a{
    width: 30px;
    height: 30px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
    transition: .3s linear;
    background: #302e2e;
}
.social a:hover{
    color: #000;
    background: #fff;
}
.continfo{}
.continfo a{
    margin: 0 0 25px;
}
.continfo a:last-child{
    margin: 0;
}
.continfo a span{
    display: block;
}
.continfo a span i{}
.continfo a span:nth-child(1){
    font-size: 14px;
    font-weight: 500;
    color: var(--light-orange);
    text-transform: uppercase;
    margin: 0 0 5px;
}
.continfo a span:nth-child(2){
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
}
.continfo a span:nth-child(2):hover{
}
footer .footerbox{}
footer .footerbox figure{}
footer .footerbox figure img{width: 50%;}
footer .footerbox h3{
    font-size: 16px;
    color: #000;
    position: relative;
    margin: 0 0 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
footer .footerbox p{
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.5;
    font-size: 15px;
}
footer .footerbox h3:before{
    content: "";
    width: 60px;
    border-bottom: 2px solid var(--light-orange);
    position: absolute;
    bottom: -10px;
}
footer .footerbox ul{
    flex-basis: 50%;
}
footer .footerbox ul li{line-height: 1.6;}
footer .footerbox ul li a{
    transition: .3s linear;
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}
footer .footerbox ul li a:hover{
    color: var(--primary-green);
}
footer .footercategory{
    /* display: flex; */
    /* align-items: start; */
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
}
footer .footercategory h3{
    flex-basis: 100%;
}
footer .footercategory ul{
}
footer .copyright{
    display: flex;
    padding: 40px 10px 20px;
    align-items: center;
    justify-content: space-between;
}
footer .copyright p{
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
}
footer .copyright p a{
    display: inline-block;
    color: var(--dark-green);
    font-size: 14px;
    font-weight: 500;
    transition: .3s linear;
}
footer .copyright p a:hover{
    text-decoration: line-through;
}






.productpage{
    padding: 20px 50px 0;
}
.productleft{
    text-align: center;
    border-radius: 5px;
    position: sticky;
    top: 0;
    height: 100%;
    position: relative;
}
.productleft .extm {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 8;
    border: 1px solid #ddd;
    height: 400px !important;
    background: #fff;
}
.productleft .extm img {
    width: 100%;
}
.productleft .showimage{}
.productleft .showimage img{
    margin: auto;
    border-radius: 5px;
    width: 100%;
}
.productleft .imgs{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 10px 0 0;
}
.productleft .showimage .slick-arrow{
    z-index: 1;
    transition: .5s;
    width: 29px;
    height: 30px;
    border: 1px solid #e2e2e2;
    border-radius: 50px;
    background: #e6e6e678;
}

.productleft .showimage .slick-arrow.slick-prev:before,
.productleft .showimage .slick-arrow.slick-next:before{
    color: #fff;
    font-family: revert;
    display: inline-block;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 1;
    color: var(--primary-orange);
    font-size: 18px;
}
.productleft .showimage .slick-arrow.slick-prev:before{
    content: "\f27a";
    font-family: bootstrap-icons;
    font-size: 20px;
}
.productleft .showimage .slick-arrow.slick-next:before{
    content: "\f27b";
    font-family: bootstrap-icons;
    font-size: 20px;
}

.productleft .showimage .slick-arrow.slick-prev{left: 10px;}
.productleft .showimage .slick-arrow.slick-next{right: 10px;}
.productleft .imgs .slick-current{
    border: 2px solid var(--light-green)
}

/*.productleft .imgs::-webkit-scrollbar{*/
/*    height: 5px;*/
/*}*/
/*.productleft .imgs::-webkit-scrollbar-thumb{*/
/*    background: var(--secondary-color);*/
/*    height: 3px;*/
/*}*/
.productleft .imgs img{
    height: 100%;
    cursor: pointer;
    transition: .3s linear;
    border-radius: 5px;
    border: 2px solid transparent;
}

.productleft .imgs img:hover{
    border: 2px solid var(--light-green);
}
.productright{}
.productright h3{
    color: var(--text-color);
    font-size: 20px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
}
.productright h3:before{
    content: "";
    width: 40px;
    height: 2px;
    background: var(--light-green);
    position: absolute;
    bottom: -10px;
    left: 0;
}
.productright .productratings{
    padding: 10px 0;
}
.productright .productratings i{
    color: rgb(255, 115, 0)
}

.productright .probrands{
    padding: 0 0 20px;
}
.productright .probrands a{
    position: relative;
    z-index: 1;
    padding: 0 0 0 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: start;
    height: 40px;
}
.productright .probrands a .icon{
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}
.productright .probrands a .icon img{width: 100%;}
.productright .probrands a p{
    font-size: 14px;
    font-weight: 500;
    color: #888;
    line-height: 1;
}
.productright .probrands a span{
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1;
    display: inline-block;
}
.productright .selectunit{
    padding: 20px 0;
}
.productright .selectunit h4{
    font-size: 14px;
    color: #222;
}
.productright .selectunit .unitsbox{
    padding: 10px 0 0;
    display: flex;
    align-items: start;
    gap: 5px;
}
.productright .selectunit .unitsbox a{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    background: #6206500f;
    transition: .3s linear;
}
.productright .selectunit .unitsbox a:hover,
.productright .selectunit .unitsbox a.active{
    background: var(--secondary-color);
}
.productright .selectunit .unitsbox a p{}
.productright .selectunit .unitsbox a p:nth-child(1){}
.productright .selectunit .unitsbox a p:nth-child(2){
    font-weight: 500;
    display: flex;
    gap: 10px;
}
.productright .selectunit .unitsbox a:hover p,
.productright .selectunit .unitsbox a.active p{
    color: #fff;
}
.productright .selectunit .unitsbox a p:nth-child(2) span{
}
.productright .selectunit .unitsbox a p:nth-child(2) del{
    color: #999;
}
.productright .selectunit .unitsbox a.active p:nth-child(2) del,
.productright .selectunit .unitsbox a:hover p:nth-child(2) del{
    color: #aaa;
}
.productright .selectunit .unitsbox a p span.discount{
    display: none;
}
.productright .selectunit .unitsbox a p span.oldprice{
    color: #999;
    text-decoration: line-through
}
.productright p{
    color: #000;
    font-size: 15px;
    font-weight: 300;
}
.productright .quantity{
    display: flex;
    align-items: start;
    padding: 10px 0;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.productright .quantity p{}
.productright .quantity .pricebox{
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    
}
.productright .quantity .pricebox .price{
    font-size: 28px;
    font-weight: 400;
}
.productright .quantity .newprice{
    color: var(--secondary-color);
    font-size: 25px;
}
.productright .quantity .oldprice{
    color: #ababab;
    text-decoration: line-through;
    font-size: 20px;
    font-weight: 300;
}
.productright .quantity .discount{
    color: green;
    font-size: 18px;
    font-weight: 400;
}
.productright .quantity .include{
    font-size: 10px;
    white-space: nowrap;
    font-weight: 400;
}

.product_colors_and_sizes{
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
}
.product_colors_and_sizes .product_colors{}
.product_colors_and_sizes .product_colors h5{
    font-weight: 300;
    font-size: 16px;
    padding: 0 0 10px;
}
.product_colors_and_sizes .product_colors h5 span{
    font-size: 14px;
    font-weight: 500;
}
.product_colors_and_sizes .product_colors .product_colors_boxes{}
.product_colors_and_sizes .product_colors .product_colors_boxes .colorbox{
    width: 20%;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #e7e7e7;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    transition: .3s linear;
}
.product_colors_and_sizes .product_colors .product_colors_boxes .colorbox:hover,
.product_colors_and_sizes .product_colors .product_colors_boxes .colorbox.active{
    border-color: var(--light-green);
}
.product_colors_and_sizes .product_colors .product_colors_boxes .colorbox figure{
    margin: 0;
}
.product_colors_and_sizes .product_colors .product_colors_boxes .colorbox figure img{
    width: 100%;
    border-radius: 3px;
}
.product_colors_and_sizes .product_colors .product_colors_boxes .colorbox p{
    font-weight: 400;
    font-size: 14px;
    padding: 5px 0 0;
}
.product_colors_and_sizes .product_colors .product_colors_boxes .colorbox span{
    color: var(--text-color);
    font-size: 13px;
}

.product_colors_and_sizes .product_sizes{
    padding: 25px 0 0;
}
.product_colors_and_sizes .product_sizes h5{
    font-weight: 300;
    font-size: 16px;
    padding: 0 0 10px;
}
.product_colors_and_sizes .product_sizes h5 span{
    font-weight: 500;
    font-size: 14px;
}
.product_colors_and_sizes .product_sizes .product_sizes_boxes{}
.product_colors_and_sizes .product_sizes .product_sizes_boxes .sizebox{
    width: 20%;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
    transition: .3s linear;
}
.product_colors_and_sizes .product_sizes .product_sizes_boxes .sizebox:hover,
.product_colors_and_sizes .product_sizes .product_sizes_boxes .sizebox.active{
    border-color: var(--light-green);
}
.product_colors_and_sizes .product_sizes .product_sizes_boxes .sizebox figure{
    margin: 0;
}
.product_colors_and_sizes .product_sizes .product_sizes_boxes .sizebox figure img{
    width: 100%;
    border-radius: 5px;
}
.product_colors_and_sizes .product_sizes .product_sizes_boxes .sizebox p{
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    background: #5aa13c24;
    padding: 5px;
    color: var(--dark-green);
    font-weight: 500;
}
.product_colors_and_sizes .product_sizes .product_sizes_boxes .sizebox span{
    color: var(--text-color);
    font-size: 13px;
}

.productright .productactionbtn{
    display: none;
}
.productright .productactionbtn .actbtn{
    background: var(--primary-green);
    padding: 10px 10px;
    line-height: 1;
    border-radius: 4px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.productright .productactionbtn .actbtn.buy{
    background: var(--primary-orange)
}
.productright .productactionbtn .qty{
    display: flex;
    align-items: center;
}
.productright .productactionbtn .qty label{
    width: 30px;
    text-align: center;
    height: 40px;
    border: 1px solid #e7e7e7;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}
.productright .productactionbtn .qty label:first-child{
    border-radius: 5px 0 0 5px;
}
.productright .productactionbtn .qty label:last-child{
    border-radius: 0 5px 5px 0;
}
.productright .productactionbtn .qty input{
    width: 40px;
    height: 40px;
    border: none;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
    font-weight: 300;
}
.productright .actionsbtns {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0 20px;
    flex-wrap: wrap;
}
.productright .actionsbtns .qty{
    display: flex;
    align-items: center;
}
.productright .actionsbtns .qty label{
    width: 40px;
    text-align: center;
    height: 40px;
    border: 1px solid #e7e7e7;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}
.productright .actionsbtns .qty label:first-child{
    border-radius: 5px 0 0 5px;
}
.productright .actionsbtns .qty label:last-child{
    border-radius: 0 5px 5px 0;
}
.productright .actionsbtns .qty input{
    width: 40px;
    height: 40px;
    border: none;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
    font-weight: 300;
}
.productright .actionsbtns .actbtn{
    padding: 12px 50px;
    font-size: 16px;
    transition: .3s linear;
    font-weight: 300;
    background: var(--dark-orange);
    color: #fff;
    letter-spacing: .5px;
    line-height: 1;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.productright .productactionbtn .actbtn:before,
.productright .actionsbtns .actbtn::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-100%;
    width:60px;
    height:220%;
    background: linear-gradient(90deg, #00000000, rgb(255 255 255 / 28%), transparent);
    transform:rotate(25deg);
    transition:0.8s ease;
}
.productright .productactionbtn .actbtn:before,
.productright .actionsbtns .actbtn::before{
    animation:shine 2s linear infinite;
}

@keyframes shine{
    0%{
        left:-100%;
    }
    100%{
        left:150%;
    }
}
.productright .actionsbtns .actbtn:hover{
    background: var(--light-orange);
}
.productright .quantity .addcart{}
.productright .actionsbtns .buy{
    background: var(--light-green);
}
.productright .actionsbtns .buy:hover{
    background: var(--dark-orange);
}
.product_page_shortdesc{
    padding: 20px 0 0;
}
.product_page_shortdesc h4{
    color: var(--text-color);
    font-size: 20px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 15px;
}
.product_page_shortdesc ul{
    
}
.product_page_shortdesc ul li{
    font-size: 14px;
    font-weight: 300;
    color: var(--text-color);
    padding: 0 0 15px;
    display: flex;
    align-items: center;
}
.product_page_shortdesc ul li strong{font-weight: 400;flex: 0 0 25%;}
.product_page_shortdesc ul li strong:nth-child(1){
}
.product_page_shortdesc ul li strong:nth-child(2){
    width: 70%;
    font-weight: 300;
}
.product_page_shortdesc ul li:before{
    content: "\f151";
    font-family: bootstrap-icons;
    font-size: 8px;
    margin-right: 5px;
    color: var(--primary-orange);
}
/* .product_page_shortdesc ul li strong{
    font-weight: 600;
    color: #000000;
} */

.product_need_helping_for_buying{
    padding: 30px 0 0;
}
.product_need_helping_for_buying h4{
    color: var(--text-color);
    font-size: 20px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 15px;
}
.product_need_helping_for_buying .call_for_need{
    display: inline-block;
    position: relative;
    padding-left: 50px;
}
.product_need_helping_for_buying .call_for_need i{
    color: var(--dark-orange);
    font-size: 36px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.product_need_helping_for_buying .call_for_need span{
    line-height: 1;
    display: block;
    color: #999;
}
.product_need_helping_for_buying .call_for_need p{
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
}

.prodesc-widget{padding: 30px 0;}
.prodescbox{

}
.prodescbox-header{border-top: 1px solid #e7e7e7;border-bottom: 1px solid #e7e7e7;display: flex;align-items: center;gap: 30px;}
.prodescbox-header .prodesc-link{
    font-size: 16px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    padding: 10px 0;
    transition: .3s linear;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.prodescbox-header .prodesc-link:before{
    content: "";
    width: 100%;
    height: 2px;
    background: var(--light-green);
    position: absolute;
    bottom: -2px;
    transform-origin: center;
    transition: .3s linear;
    border-radius: 50px;
    opacity: 0;
}
.prodescbox-header .prodesc-link:hover:before,
.prodescbox-header .prodesc-link.active:before{opacity: 1;}
.prodescbox-header .prodesc-link.active,
.prodescbox-header .prodesc-link:hover{
    color: var(--light-green);
}
.prodesc-body{}
.prodesc-tab{
    padding: 10px 0 0;
    display: none;
}
.prodesc-tab.desc{}
/* .prodesc-tab.desc h2,
.prodesc-tab.desc h3,
.prodesc-tab.desc h4{
    margin: 20px 0 5px;
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
}
.prodesc-tab.desc p{
    color: #444;
    font-weight: 500;
    font-size: 16px;
}
.prodesc-tab.desc ul{
    padding: 20px 0 0;
    list-style: disc;
    list-style-position: inside;
}
.prodesc-tab.desc ul li{
    color: #444;
    font-weight: 500;
    font-size: 16px;
} */


.product_desc_links{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    flex-wrap: wrap;
}
.product_desc_links li{}
.product_desc_links li a{
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    transition: .3s linear;
    padding: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 50px;
    font-size: 13px
}
.product_desc_links li a.active,
.product_desc_links li a:hover{
    background: var(--light-green);
    border-color: var(--dark-green);
    color: #fff;
}
.product_desc_tabs{
    padding: 20px 0 0;
}
.product_desc_tabs ul{}
.product_desc_tabs ul li{
    font-size: 16px;
    font-weight: 300;
    padding: 0 0 10px;
    color: var(--text-color);
}
.product_desc_tabs ul li:before{
    content: "\f33d";
    font-family: bootstrap-icons;
    font-size: 8px;
    margin-right: 5px;
    color: #999;
}
.product_desc_tabs ul li strong{
    font-weight: 400;
    display: inline-block;
    color: #000;
}

.product_desc_tabs p{
    color: var(--text-color);
    font-size: 15px;
    padding: 0 0 10px;
}
.product_desc_tabs p strong{
    font-weight: 500;
    color: #000;
}


.prodesc-tab.review{}


.prodesc-tab.active{
    display: block;
}
.prodesc-tab.review h4{color: #000;font-weight: 300;font-size: 16px;padding: 10px 0;}
/* .prodesc-tab.review span{
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 15px;
} */
.prodesc-tab.review .subtitle{
    color: var(--secondary-color);
    font-weight: 400;
}
.prodesc-tab.review .putratings{
    padding: 15px 0 15px 10px;
}
.prodesc-tab.review .putratings label{
    font-size: 26px;
    margin-right: 34px;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.prodesc-tab.review .putratings label:hover i{
    color: #ffca00;
}

/* jab radio checked ho */
.prodesc-tab.review .putratings input:checked + i,
.prodesc-tab.review .putratings input:checked ~ i {
    color: red;
}

/* label ke andar sab stars red */
.prodesc-tab.review .putratings input:checked ~ i,
.prodesc-tab.review .putratings input:checked ~ i ~ i {
    color: #ff8a00;
}

.prodesc-tab.review .putratings label:not(:last-child):before{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    margin-right: -15px;
}
.prodesc-tab.review .putratings .rate {padding: 20px 0 10px;display: flex;gap: 18px;flex-direction: row-reverse;justify-content: start;}
.prodesc-tab.review .putratings .rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.prodesc-tab.review .putratings .rate:not(:checked) > label {
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size: 30px;
    color: var(--text1-color);
    line-height: 1;
}
.prodesc-tab.review .putratings .rate:not(:checked) > label:before {
    content: "\f586";
    font-family: 'bootstrap-icons';
}
.prodesc-tab.review .putratings .rate > input:checked ~ label {
    color: var(--secondary-color);    
}
.prodesc-tab.review .putratings .rate:not(:checked) > label:hover,
.prodesc-tab.review .putratings .rate:not(:checked) > label:hover ~ label {
    color: var(--secondary-color);
}
.prodesc-tab.review .putratings .rate > input:checked + label:hover,
.prodesc-tab.review .putratings .rate > input:checked + label:hover ~ label,
.prodesc-tab.review .putratings .rate > input:checked ~ label:hover,
.prodesc-tab.review .putratings .rate > input:checked ~ label:hover ~ label,
.prodesc-tab.review .putratings .rate > label:hover ~ input:checked ~ label {
    color: var(--text-color);
}
.prodesc-tab.review form{}
.prodesc-tab.review form .fields{
    margin: 0 0 20px;
}
.prodesc-tab.review form .fields label{
    font-weight: 600;
    font-size: 14px;
    padding: 0 0 5px;
}
.prodesc-tab.review form .fields :is(textarea, input){
    border: 1px solid #e2e2e2;
    outline: none;
    padding: 8px 10px;
    color: #000;
    font-weight: 400;
    border-radius: 0;
}
.prodesc-tab.review form .fields :is(textarea, input)::placeholder{
    color: var(--text1-color);
}
.prodesc-tab.review form .fields :is(textarea, input):focus{
    box-shadow: none;
}
.prodesc-tab.review form .fields textarea{
    height: 100px;
}
.prodesc-tab.review form .fields input{}
.prodesc-tab.review form .fields-btn{
}
.prodesc-tab.review form .fields-btn button{
    outline: none;
    border: none;
    border: 2px solid #000;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    transition: .3s linear;
}
.prodesc-tab.review form .fields-btn button:hover{
    background: #000;
    color: #fff;
}
.prodesc-tab.review form .fields-btn .loading{
    width: 25px;
    height: 25px;
    border: 3px solid #000;
    border-top: 3px solid transparent;
    animation: loading 0.5s linear infinite;
    border-radius: 50%;
}
form .reviewmsg{}
form .reviewmsg p{
    padding: 5px 0 0;
    font-weight: 500;
    font-size: 14px;
}
form .reviewmsg p.success{color: green;}
form .reviewmsg p.failed{color: red;}

.reviews_show_and_add{
    position: relative;
    z-index: 1;
}
.reviews_show_ratings{
    position: relative;
    z-index: 1;
    padding-left: 80px;
}
.reviews_show_ratings h5{
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 46px;
    line-height: 1;
    font-weight: 400;
}
.reviews_show_ratings .ratings{}
.reviews_show_ratings .ratings i{
    color: #f77501;
    font-size: 13px;
}
.reviews_show_ratings .ratings span{
    color: var(--text-color);
    font-size: 11px;
}
.reviews_show_ratings p{
    font-size: 14px;
    color: var(--text-color);
}
.reviews_show_ratings a{
    margin: 10px 0 0;
    color: var(--light-orange);
    font-size: 13px;
    text-decoration: underline;
    outline: none;
}
.reviews_show_ratings a i{
    font-size: 15px;
}
.reviews_ratings_chart{
    padding: 15px 0 0;
}
.ratings_chart_row{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin: 10px 0 0;
}
.ratings_chart_row .stars{
    color: var(--text-color);
    font-size: 14px;
    display: inline-block;
    font-weight: 400;
}
.ratings_chart_row .stars i{
    color: #a5a5a5;
    font-size: 13px;
}
.ratings_chart_row .chart{
    width: 50%;
    background: #f4f4f4;
    height: 7px;
    border-radius: 50px;
    overflow: hidden;
}
.ratings_chart_row .chart .fill{
    background: var(--light-orange);
    height: 7px;
    border-radius: 50px;
}
.ratings_chart_row .chart_percent{
    font-size: 13px;
    font-weight: 400;
}


.customer_reviews{}
.customer_reviews_box{
    margin: 0 0 15px;
    padding: 10px 10px 15px;
    border-bottom: 1px solid #e7e7e7;
}
.customer_reviews_box .ratings_points{}
.customer_reviews_box .ratings_points i{
    color: var(--light-orange);
    font-size: 13px;
}
.customer_reviews_box p{
    color: var(--text-color);
    font-size: 15px;
    font-weight: 300;
}
.customer_reviews_box h5{
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 10px 0 5px;
}
.customer_reviews_box .verified_and_date{
    display: flex;
    align-items: center;
    gap: 15px;
}
.customer_reviews_box .verified_and_date .verified{
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    display: inline-flex;
}
.customer_reviews_box .verified_and_date .verified:before{
    content: "\f4b5";
    font-family: 'bootstrap-icons';
    color: var(--primary-green);
    margin-right: 5px;
}
.customer_reviews_box .verified_and_date .date{
    font-size: 11px;
    color: #999;
}

.ratingsubmit_frm_wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.ratingsubmit_frm_wrapper.active{
    display: flex;
}
.ratingsubmit_frm_wrapper .inner_wrapper{
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    width: 40%;
}
.ratingsubmit_frm_wrapper .inner_wrapper .closebtn{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    display: block;
    z-index: 99;
}
.ratingsubmit_frm_wrapper .inner_wrapper h4{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    padding: 0 0 10px;
}
.ratingsubmit_frm_wrapper .inner_wrapper h4:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #e7e7e7;
    position: absolute;
    bottom: 0;
    left: 0;
    
}
.ratingsubmit_frm_wrapper .inner_wrapper form{

}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields{
    margin: 25px 0 0;
}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields span{
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin: 0 0 5px;
}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields .rating {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ratingsubmit_frm_wrapper .inner_wrapper form .fields .rating input {
    display: none;
}

.ratingsubmit_frm_wrapper .inner_wrapper form .fields .rating label {
    font-size: 20px;
    color: #ddd;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    line-height: 1;
}

/* Hover effect */
.ratingsubmit_frm_wrapper .inner_wrapper form .fields .rating label:hover,
.ratingsubmit_frm_wrapper .inner_wrapper form .fields .rating label:hover ~ label {
    color: var(--light-orange);
}

/* Selected stars */
.ratingsubmit_frm_wrapper .inner_wrapper form .fields .rating input:checked ~ label {
    color: var(--light-orange);
}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields label{
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    margin: 0 0 5px;
}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields textarea{
    width: 100%;
    height: 80px;
    border: 1px solid #e7e7e7;
    outline: none;
    padding: 10px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields textarea:focus{
    box-shadow: none;
}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 0;
}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields-btn button{
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--light-orange);
    border: none;
    transition: .3s linear;
    width: 100%;
}
.ratingsubmit_frm_wrapper .inner_wrapper form .fields-btn button:hover{
    background: var(--light-green);
}   


.product-related{

}
.product-related .maintitle{}
.product-related .maintitle h3{}
.product-related .maintitle p{}
.product-related .probox{
    margin: 0 10px;
}
.product-related .slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    width: auto;
    display: flex;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
    gap: 10px;
}
.product-related .slick-dots li{
    width: 10px;
    height: 10px;
    background: var(--third-color);
    border-radius: 6px;
    display: block;
    transition: .2s linear;
}
.product-related .slick-dots li.slick-active{
    background: var(--secondary-color);
}
.product-related .slick-dots li button{
    display: none;
}
.product-related .slick-arrow{
    z-index: 1;
    transition: .5s;
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50px;
}

.product-related .slick-arrow.slick-prev:before,
.product-related .slick-arrow.slick-next:before{
    color: #fff;
    font-family: revert;
    display: inline-block;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 1;
    color: #fff;
    font-size: 18px;
}
.product-related .slick-arrow.slick-prev:before{
    content: "\f12c";
    font-family: bootstrap-icons;
    font-size: 26px;
}
.product-related .slick-arrow.slick-next:before{
    content: "\f135";
    font-family: bootstrap-icons;
    font-size: 26px;
}

.product-related .slick-arrow.slick-prev{left: 0px;}
.product-related .slick-arrow.slick-next{right: 0;}


.cart-container{
    padding: 20px 50px;
}
.cartbox{
    background: #fff;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 15%);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.cartbox-header{
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.cartbox-header span{
    color: var(--text-color);
    font-weight: 500;
    text-align: start;
    line-height: 1;
    font-size: 18px;
}

.cartbox-body{
    display: flex;
    align-items: start;
    border-bottom: 1px solid #eee;
    padding: 15px;
}
.cartbox-body .product{
    padding-right: 15px;
    flex: 0 1 10%;
}
.cartbox-body .product img{width: 100px; border-radius: 5px;}
.cartbox-body .content{
    position: relative;
    flex: 0 1 87%;
}
.cartbox-body .content h3{
    color: var(--text-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}
.cartbox-body .content .price-n-qty{
    display: flex;
    padding: 15px 0;
    align-items: center;
    gap: 15px;
}
.cartbox-body .content .price-n-qty .price{
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    margin-right: 1px;
}
.cartbox-body .content .price-n-qty .qty{
    display: flex;
}
.cartbox-body .content .price-n-qty .qty .cartlabel{
    font-size: 15px;
    line-height: 1;
    width: 25px;
    height: 28px;
    border: 1px solid #e7e7e7;
    text-align: center;
    cursor: pointer;
    background: none;
}
.cartbox-body .content .price-n-qty .qty .cartinput{
    width: 30px;
    height: 28px;
    text-align: center;
    outline: none;
    border: none;
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    color: #000;
    font-weight: 400;
    font-size: 14px;
}
.cartbox-body .content .price-n-qty .qty input::-webkit-outer-spin-button,
.cartbox-body .content .price-n-qty .qty input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.cartbox-body .content .total{
    font-weight: 500;
    font-size: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--light-green);
}
.cartbox-body .content .total span{
    color: var(--text-color);
}
.cartbox-body .content .removecartitem{
    font-size: 13px;
    color: #a9a9a9;
    transition: .3s linear;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.cartbox-body .content .removecartitem:hover{
    color: var(--text-color);
}
.sidecartbilling{
    margin: 30px 0 10px;
    background: rgb(135 206 235 / 6%);
    border: 1px solid rgb(135 206 235 / 16%);
    padding: 15px 15px 10px;
    border-radius: 5px;
}
.sidecartbilling h3{
    font-size: 14px;
    font-weight: 600;
    color: #000;
    padding: 0 0 5px;
}
.sidecartbilling .billgridbx{
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 0 0 5px;
}
.sidecartbilling .billgridbx span{
    font-size: 12px;
    color: #000;
}
.sidecartbilling .billgridbx span:nth-child(1){}
.sidecartbilling .billgridbx span:nth-child(2){}
.sidecartbilling .billgridbx span:nth-child(2) del{color: #666; font-size: 12px;}
.sidecartbilling .billgridbx.grandtotal{
    border-top: 1px solid #eee;
    margin: 5px 0 0;
    padding: 5px 0 0;
}
.sidecartbilling .billgridbx.grandtotal span{font-weight: 600;}
.coupons-wrapper{}
.removecoupon,
.coupons-wrapper .couponcheck{
    font-size: 10px;
    font-weight: 500;
    color: #2f6672;
    text-decoration: underline;
    transition: .3s linear;
}
.coupons-wrapper .couponcheck:hover{
    text-decoration: none;
}
.availablecoupons{
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}
.availablecoupons.active{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}
.availcoupon-head{
    background: var(--primary-color);
    padding: 10px;
    position: relative;
    z-index: 9;
}
.availcoupon-head h3{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.availcoupon-head .closeavailcoupon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: #fff;
}
.availcoupon-body{
    padding: 10px;
}
.availcoupon-body .fixcoupon{
    background: #a4088017;
    margin: 0 0 10px;
    border-radius: 2px;
    padding: 5px 10px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    gap: 10px;
    background: #fff;
    box-shadow: 0 0 5px 1px rgb(183 183 183 / 40%);
}
.availcoupon-body .fixcoupon h4{
    background: #36ff3626;
    display: inline-block;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 2px;
    outline: 1px dashed #00800036;
    outline-offset: -4px;
    letter-spacing: 2px;
    font-weight: 500;
    color: green;
}
.availcoupon-body .fixcoupon h3{
    font-size: 12px;
    padding: 0 0 2px;
}
.availcoupon-body .fixcoupon .apply{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    background: #333;
    font-weight: 600;
    padding: 7px 8px;
    border-radius: 2px;
    line-height: 1;
    transition: .3s linear;
    border: none;
    outline: none;
    color: #eee;
}
.availcoupon-body .fixcoupon .apply:hover{
    background: var(--secondary-color);
    color: #fff;
}

.availcoupon-body .fixcoupon .couponpart.first{}
.availcoupon-body .fixcoupon .couponpart.second{}
.availcoupon-body .fixcoupon .couponpart.second span{
    font-size: 12px;
    line-height: 1;
    display: flex;
    font-weight: 500;
}
.availcoupon-body .fixcoupon .couponpart.second p{
    font-size: 11px;
    color: green;
}

.coupon-n-total{}
.couponbox{width: 100%;margin: 0 0 5px;background: #5aa13c3d;border: 1px solid var(--dark-green);padding: 10px;border-radius: 5px;}
.couponbox form{
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
}
.couponbox form .fields{
    position: relative;
    z-index: 1;
    flex: 1 0 100%;
}
.couponbox form .fields.inputfields{
    flex: 1 0 75%;
}
.couponbox form .fields.inputfields span{
    letter-spacing: 10px;
    font-weight: 600;
    font-style: italic;
    color: var(--dark-green);
    font-size: 20px;
    text-align: center;
    width: 100%;
    display: inline-block;
    background: repeating-linear-gradient(45deg, #ffdcbcad, #ffe7d1c4 10px, #deffd0b5 10px, #e9ffdfc7 20px);
    border-radius: 5px;
    outline: 1px dashed var(--dark-orange);
    padding: 2px;
}
.couponbox form .fields .couponcode{background: #000;font-size: 20px;letter-spacing: 15px;font-weight: 600;color: #fff;padding: 10px;outline: 1px dashed var(--secondary-color);outline-offset: -5px;text-align: center;width: 100%;display: block;}
.couponbox form .fields input{
    padding: 5px 0;
    outline: none;
    width: 78%;
    background: none;
    border: none;
}
.couponbox form .fields input::placeholder{
    color: var(--light-green)
}
.couponbox form .fields-btn{flex: 1 0 20%;text-align: end;}
.couponbox form .fields-btn button{
    border: none;
    outline: none;
    font-size: 13px;
    padding: 10px;
    transition: .3s linear;
    background: var(--light-green);
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1;
}
.couponbox form .fields-btn button:hover{
    background: var(--dark-green);
    color: #fff;
}
.couponbox form .fields-btn a{
    font-weight: 500;
    font-size: 14px;
    color: var(--secondary-color);
    transition: .3s linear;
    display: block;
    width: fit-content;
    margin-left: auto;
}
.couponbox form .fields-btn a:hover{
    color: #000;
}
.coupon-n-total .errcoupon{
    margin: 0 0 10px;
}
.coupon-n-total .errcoupon p{
    color: green;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.coupon-n-total .total{
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0 0;
}
.coupon-n-total .total h3{
    font-size: 18px;
    font-weight: 300;
    border-bottom: 1px solid #e7e7e7;
    padding: 0 0 15px;
}
.coupon-n-total .total div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-basis: 100%;
}
.coupon-n-total .total span{font-weight: 300;}

.coupon-n-total .total .totalcart{}
.coupon-n-total .total .discountcart{}
.coupon-n-total .total .grandtotalcart{
    border-top: 1px solid #e7e7e7;
    padding: 10px 0;
}
.coupon-n-total .total .grandtotalcart span{
    font-weight: 500;
    font-size: 18px;
}
.coupon-n-total .total .cart-action{}
.coupon-n-total .total .cart-action a{
    width: 100%;
    border: 1px solid var(--dark-orange);
    padding: 7px 15px;
    text-align: center;
    font-weight: 600;
    transition: .3s linear;
    background: var(--dark-orange);
    color: #fff;
    border-radius: 5px;
}
.coupon-n-total .total .cart-action a:hover{
    background: var(--light-orange);
    border-color: var(--light-orange);
}
.coupon-n-total .total .savedamount{}
.coupon-n-total .total .savedamount p{
    color: var(--light-green);
    font-size: 14px;
    font-weight: 400;
}
.checkout_page_header{
    padding: 10px 5%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid #e2e2e2;
}
.checkout_page_logo{}
.checkout_page_logo img{width: 100px;}
.checkout_page_backcart{}
.checkout_page_backcart a{
    font-size: 22px;
}
.checkout-widget{
    padding: 30px 0 40px;
    position: relative;
    z-index: 1;
    height: 100vh;
}
.checkout-widget .checkoutleft:before{
    content: "";
    height: 100%;
    border: 1px solid #e2e2e2;
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
}
.checkoutleft{}
.checkoutlogin{
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #5aa13c3d;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--dark-green);
}
.checkoutlogin h3{
    color: #000;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-green);
}
.checkoutlogin a{
    font-size: 15px;
    color: var(--light-orange);
    font-weight: 600;
}

.checkoutlogin{}
.checkoutlogin-actbtn{
    text-align: center;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.checkoutlogin-actbtn .loginbtn{}
.checkoutlogin-actbtn .or{
    color: var(--text1-color);
    margin-left: 20px;
    font-weight: 600;
}
.checkoutlogin-actbtn .guestlogin{
    color: var(--text-color);
    font-weight: 300;
    transition: .3s linear;
}
.checkoutlogin-actbtn .guestlogin:hover{
    color: var(--secondary-color);
}

.checkoutright{
    padding: 0 0 0 100px;
}
.checkouttotal{
    padding: 20px;
    border-radius: 5px;
}
.checkoutproduct{
    display: flex;
    align-items: start;
    gap: 5px;
    border-bottom: 1px solid #5e74823b;
    padding: 0 0 6px;
    margin: 6px 0 0;
}
.checkoutproduct .icon{
    border: 1px solid #e7e7e7;
    margin-right: 15px;
}
.checkoutproduct .icon img{width: 100px;border-radius: 5px;}
.checkoutproduct .content{}
.checkoutproduct .content h4{
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    padding: 0 0 5px;
}
.checkoutproduct .content span{
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
}
.checkouttotal .totals{
    padding: 20px 0 0;
}
.checkouttotal .totals .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 5px;
}
.checkouttotal .totals .box span{
    color: #000;
    font-weight: 300;
    font-size: 15px;
}
.checkouttotal .totals .box:last-child{
    border-top: 1px solid #e7e7e7;
    padding: 10px 0 0;
    margin: 10px 0 0;
}
.checkouttotal .totals .box:last-child span{
    font-weight: 500;
    font-size: 18px;
}
.contact-widget{
    padding: 20px 50px;
}
.contact-widget .contright{
    background: #3d8b2e0f;
    padding: 30px;
    border-radius: 10px;
}
.maparea{}
.maparea iframe{width: 100%; height: 400px; display: block; border-radius: 5px;}
.contright h3{
    font-size: 20px;
    font-weight: 400;
    padding: 0 0 5px;
}
.contright h5{
    font-size: 14px;
    color: var(--text-color);var(
    --secondary-color:);
    font-weight: 300;
}
.contright form{
    width: 100%;
    padding: 20px 0 0;
}
.contright form h3{
    color: #fff;
    margin: 0 0 20px;
}
.contright form .fields{
    margin: 0 0 20px;
}
.contright form .fields label{
    font-size: 12px;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: .5px;
}
.contright form .fields :is(textarea, input){
    border: 1px solid #ddd;
    outline: none;
    border-radius: 0;
    color: #000;
    padding: 5px 10px;
    width: 100%;
    border-radius: 5px;
}
.contright form .fields :is(textarea, input)::placeholder{
    color: #ffffff2e;
    font-weight: 300;
    letter-spacing: .5px;
}
.contright form .fields :is(textarea, input):focus{
    box-shadow: none;
}
.contright form .fields textarea{}
.contright form .fields input{}
.contright form .fields-btn{
}
.contright form .fields-btn button{
    outline: none;
    background: var(--light-orange);
    padding: 5px 15px;
    font-weight: 400;
    font-size: 14px;
    transition: .3s linear;
    border: 1px solid var(--light-orange);
    border-radius: 5px;
    color: #fff;
}
.contright form .fields-btn button:hover{
    background: var(--dark-orange);
    color: #fff;
}

.login-widget{
    padding: 20px 0;
}
.loginbox{
    background: var(--forth-color);
    padding: 30px;
}
.loginbox .login-title{
    color: #000;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}
.loginbox > p{
    font-size: 16px;
    text-align: center;
    margin: 0 0 20px;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text1-color);
}
.loginbox form{}
.loginbox form .fields{
    margin: 20px 0 10px;
    position: relative;
    z-index: 1;
}
.loginbox form .fields .regerr{
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.loginbox form .fields label{
    color: #000;
    transition: .3s linear;
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 5px;
}
.loginbox form .fields input{
    width: 100%;
    padding: 10px 15px;
    outline: none;
    border: none;
    color: #000;
    background: no-repeat;
    border: 1px solid #5e748242;
}
.loginbox form .fields .passfield{
    position: relative;
    z-index: 1;
}
.loginbox form .fields .passfield a{
    color: var(--text1-color);
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.loginbox form .fields .passfield a.bi-eye-fill{
    color: var(--secondary-color);
}
.loginbox form .forgetpass{
    text-align: end;
}
.loginbox form .forgetpass a{
    color: #fff;
    font-size: 13px;
    transition: .3s linear;
}
.loginbox form .forgetpass a:hover{
    color: var(--secondary-color);
}
.loginbox form .fields-btn{
    text-align: center;
}
.loginbox form .fields-btn button{
    border: none;
    outline: none;
    background: #000;
    width: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 10px;
    border: 2px solid #000;
    transition: .3s linear;
}
.loginbox form .fields-btn button:hover{
    background: #fff;
    color: #000;
}
.loginbox form .signup{
    text-align: center;
}
.loginbox form .signup p{
    color: var(--text-color);
    font-size: 14px;
}
.loginbox form .signup p .create{
    color: #fff;
    font-weight: 200;
    font-size: 14px;
    transition: .3s linear;
    display: inline-block;
    font-weight: 400;
}
.loginbox form .signup p .create:hover{
    color: var(--secondary-color);
}



.accountwidget{
    padding: 50px 0;
}
.accountleft{
}
.userinfo{
    text-align: center;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--dark-green);
    padding: 12px 15px;
    border-radius: 5px;
    background: #5aa13c3d;
}
.userinfo .icon{
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
}
.userinfo .icon img{width: 30px;}
.userinfo .info{
    text-align: start;
    color: #999;
}
.userinfo .info h3{
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--dark-green);
}
.userinfo .info p{
    font-size: 14px;
    font-weight: 400;
    color: var(--light-orange);
}
.usermenu{
    box-shadow: 0 0 20px rgb(0 0 0 / 0.08);
    border-radius: 5px;
    padding: 15px;
}
.usermenu ul{}
.usermenu ul li:not(:last-child){
    margin: 0 0 10px;
}
.usermenu ul li a{
    padding: 13px 20px;
    font-size: 16px;
    transition: .3s linear;
    background: #5aa13c14;
    border-radius: 5px;
}
.usermenu ul li a.active,
.usermenu ul li a:hover{
    background: var(--light-orange);
    color: #fff;
}

.usermenu ul li a i{
    color: var(--secondary-color);
    margin-right: 5px;
    transition: .3s linear;
}
.usermenu ul li a.active i,
.usermenu ul li a:hover i{
    color: #fff;
}
.accounttab{
    display: none;
    box-shadow: 0 0 20px rgb(0 0 0 / 0.08);
    padding: 20px;
    border-radius: 5px;
}
.accounttab.active{
    display: block;
}
.accounttab-header{}
.accounttab-header h3{
    color: var(--text-color);
    font-size: 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
}
.accounttab-header h3:before{
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    top: 50%;
    right: -60px;
    background: #ddd;
}
.accounttab-body{
    padding: 15px 0 0;
}
.accounttab-body h4{
    color: var(--light-green);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px;
}
.accounttab-body form{}
.accounttab-body form .fields{
    margin: 0 0 10px;
}
.accounttab-body form .fields small{
    color: red;
    font-size: 12px;
}
.accounttab-body form .fields :is(input, select){
    background: none;
    padding: 5px 10px;
    border: 1px solid #eee;
    border-radius: 0;
    color: #333;
    font-size: 15px;
    border-radius: 5px;
}
.accounttab-body form .fields :is(input, select)::placeholder{
    color: #999;
}
.accounttab-body form .fields :is(input, select):focus{
    box-shadow: none;
}
.accounttab-body form .fields input{}
.accounttab-body form .fields select:valid,
.accounttab-body form .fields select:checked,
.accounttab-body form .fields select{
    color: var(--text-color);
}
.accounttab-body form .fields select:focus{
    color: #000;
}
.accounttab-body form .fields.gender-label{}
.accounttab-body form .fields.gender-label label{
    transition: .3s linear;
    font-size: 13px;
    border: 1px solid #212529;
    padding: 7px 20px;
    cursor: pointer;
    font-weight: 400;
    border-radius: 50px;
}
.accounttab-body form .fields.gender-label label:hover,
.accounttab-body form .fields.gender-label input:checked + label{
    background: #212529;
    color: #fff;
}

.accounttab-body form .fields .emailspan{padding: 7px 10px;border: 1px solid #eee;border-radius: 0;width: 100%;display: inline-block;font-size: 15px;}
.accounttab-body form .fields-changepass{
    padding: 15px 0 0;
}
.accounttab-body form .fields-changepass h4{}
.accounttab-body form .fields-btn{padding: 10px 0 0;}
.accounttab-body form .fields-btn button{
    outline: none;
    border: 1px solid var(--dark-green);
    color: var(--dark-green);
    padding: 5px 10px;
    font-weight: 400;
    transition: .3s linear;
    border-radius: 5px;
    background: rgba(90, 161, 60, 0.24);
    font-size: 14px;
}
.accounttab-body form .fields-btn button:hover{background: #ff9a3c36;color: var(--light-orange);border-color: var(--light-orange);}
.ordertbl{}
.ordertbl-head{
    background: #e96b1226;
    padding: 10px;
    margin: 0 0 10px;
    border: 1px solid var(--light-orange);
    border-radius: 5px;
}
.ordertbl-head span{
    color: #333;
    display: inline-block;
    font-weight: 500;
}
.ordertbl-head span:nth-child(1){
    width: 100%;
    color: var(--light-orange);
}
.ordertbl-head span:nth-child(2){
    width: 20%;
    text-align: center;
}
.ordertbl-head1{
    border: 1px solid #0000000f;
    margin: 0 0 20px;
}
.ordertbl-head1-info{
    background: #c9c9c908;
    position: relative;
    z-index: 1;
    padding: 10px;
}
.ordertbl-head1-info .txt{
    font-size: 14px;
    font-weight: 500;
}
.ordertbl-head1-info .pi{
    font-size: 14px;
    color: var(--primary-color);
    display: inline-block;
    padding: 0 5px;
}
.ordertbl-head1-info-btn{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.ordertbl-head1-info-btn a{
    font-size: 12px;
    background: #a408801c;
    color: #fff;
    padding: 3px 6px;
    border-radius: 2px;
    transition: .3s linear;
}
.ordertbl-head1-info-btn a.cancel{}
.ordertbl-head1-info-btn a.cancel:hover{
    background: var(--light-orange);
}
.ordertbl-head1-info-btn a.repay{
    background: #008000a8;
}
.ordertbl-head1-info-btn a.repay:hover{
    background: green;
}

.ordertbl-body{
    padding: 8px 10px 0;
}
.orderproduct-info{
    width: 100%;
    display: inline-flex;
    align-items: start;
    gap: 12px;
    height: 100%;
}
.orderproduct-info .icon{
}
.orderproduct-info .icon img{width: 60px;border: 1px solid #eee;border-radius: 5px;}
.orderproduct-info .content{
    position: relative;
    z-index: 1;
}
.orderproduct-info .content h3{
    font-size: 14px;
    color: #222;
    font-weight: 400;
    padding: 0 0 4px;
}
.orderproduct-info .content .orderno{
    color: var(--text-color);
    font-size: 12px;
    display: block;
}
.orderproduct-info .content .qty-price{
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
}
.orderproduct-info .content h4{
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
}
.orderproduct-status{
    width: 20%;
    display: inline-block;
    text-align: center;
}
.orderproduct-status span{
    padding: 5px 5px;
    font-size: 12px;
    color: #fff;
    border-radius: 3px;
    display: inline-block;
    font-weight: 500;
}
.orderproduct-status .successful{
    background: green;
}
.orderproduct-status .pending{
    background: skyblue;
    color: var(--primary-color);
}
.orderproduct-status .cancel{
    background: red;
}

.addnewadd{
    text-align: center;
    padding: 0 0 20px;
}
.addnewadd a{
    color: var(--light-orange);
    background: #e96b1226;
    padding: 10px;
    margin: 0 0 10px;
    border: 1px solid var(--light-orange);
    border-radius: 5px;
}
.addaddresbox{display: none;}
.addaddresbox form{}
.addaddresbox form .fields-btn{}
.addaddresbox form .fields-btn button{}
.addaddresbox form .fields-btn button:nth-child(1){}
.addaddresbox form .fields-btn button:nth-child(2){margin-left: 10px;color: var(--light-orange);background: no-repeat;font-size: 13px;border-color: var(--light-orange);}
.addaddresbox form .fields-btn button:nth-child(2):hover{
    background: var(--light-orange);
    color: #fff;
    border-color: red;
}
.addaddresbox form .fields.asdefault{
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px;
}
.addaddresbox form .fields.asdefault input{margin-right: 5px;}
.addaddresbox form .fields.asdefault label{font-size: 14px; color: var(--text1-color);}
.alladdresses{
    padding: 20px 0 0;
}
.alladdresses .addresstxt{
    background: #eee;
    padding: 20px 20px 15px;
    border-radius: 5px;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.alladdresses .addresstxt.active:before{
    content: "";
    width: 100%;
    height: 100%;
    /* background: rgb(0 0 0 / 25%); */
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    filter: blur(3px);
}
.alladdresses .addresstxt.active:after{
    content: "";
    width: 25px;
    height: 25px;
    border: 4px solid skyblue;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    border-top: 4px solid #fff;
    animation: addcircle .6s linear infinite;
}
@keyframes addcircle{
    0%{transform: translate(-50%, -50%) rotate(0deg);}
    100%{transform: translate(-50%, -50%) rotate(360deg);}
}
.alladdresses .addresstxt .inputdefault{
    display: flex;
    align-items: center;
    gap: 5px;
}
.alladdresses .addresstxt .inputdefault input{
    caret-color: var(--secondary-color);
}
.alladdresses .addresstxt .inputdefault label{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    background: #ddd;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    transition: .3s linear;
}
.alladdresses .addresstxt .inputdefault label:before{
    content: "";
    width: 10px;
    height: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50px;
    outline: 1px solid #ccc;
    outline-offset: 2px;
    margin-right: 10px;
    display: none;
}
.alladdresses .addresstxt .inputdefault input + label:hover,
.alladdresses .addresstxt .inputdefault input:checked + label{
    background: var(--secondary-color);
    color: #fff;
}
.alladdresses .addresstxt .inputdefault input:checked + label:before{
    background: var(--secondary-color);
}
.alladdresses .addresstxt span{
    display: block;
    color: #000;
    font-weight: 400;
    padding: 0 0 10px;
    font-size: 14px;
    line-height: 1.3;
}
.alladdresses .addresstxt span:nth-child(1){}
.alladdresses .addresstxt span:nth-child(2){}
.alladdresses .addresstxt span:nth-child(3){}





.checkoutformbox{
    background: #fff;
    border-radius: 5px;
}


.checkoutformbox .checkoutcontinue-wrapper{
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    background: #f4f4f433;
    border-radius: 5px;
    border: 1px solid #f6f6f6;
    padding: 20px 30px;
    padding-left: 75px;
}
.checkoutformbox .checkoutcontinue-wrapper .icon{
    width: 40px;
    height: 40px;
    background: #ff9a3c0f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.checkoutformbox .checkoutcontinue-wrapper .icon i{
    font-size: 22px;
    line-height: 1;
    color: var(--dark-orange);
}
.checkoutformbox .checkoutcontinue-wrapper h3{
    font-size: 16px;
    padding: 0 0 5px;
}
.checkoutformbox .checkoutcontinue-wrapper p{
    font-size: 13px;
    color: var(--text-color);
    width: 65%;
    line-height: 1.3;
}
.checkoutformbox .checkoutcontinue-wrapper a{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: #000;
    font-size: 13px;
    color: #fff;
    border-radius: 3px;
    padding: 10px;
    line-height: 1;
    transition: .3s linear;
}
.checkoutformbox .checkoutcontinue-wrapper a:hover{
    color: #000;
    background: #fff;
}



.checkoutformbox form{}
.checkoutformbox form .fields{
    margin: 0 0 30px;
    position: relative;
    z-index: 1;
}
.checkoutformbox form .fields label{
    color: #9b9b9b;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: -8px;
    left: 10px;
    background: #fff;
    padding: 0 5px;
}
.checkoutformbox form .fields small{
    color: #ca0f0f;
    font-size: 11px;
    font-weight: 500;
}
.checkoutformbox form .fields :is(input, select){
    background: none;
    padding: 10px 15px;
    border: 1px solid #c9c9c9;
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 400;
    font-size: 15px;
}
.checkoutformbox form .fields :is(input, select)::placeholder{
    color: var(--text1-color);
}
.checkoutformbox form .fields :is(input, select):focus{
    box-shadow: none;
}
.checkoutformbox form .fields input{}
.checkoutformbox form .fields select option:first-child,
.checkoutformbox form .fields select{
    color: #b4b4b4;
}
.checkoutformbox form .fields select:valid,
.checkoutformbox form .fields select:checked,
.checkoutformbox form .fields select:focus{
    color: #000;
}
.checkoutformbox form .fields-changebillingadd h4{
    font-weight: 700;
    font-size: 22px;
    color: var(--text-color);
    margin: 0 0 20px;
}
.checkoutformbox form .fields.gender-label{}
.checkoutformbox form .fields.gender-label label{
    transition: .3s linear;
    color: var(--text-color);
    font-size: 14px;
    border: 1px solid var(--text1-color);
    padding: 10px 30px;
    cursor: pointer;
}
.checkoutformbox form .fields.gender-label label:hover,
.checkoutformbox form .fields.gender-label input:checked + label{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.checkoutformbox form .fields-btn{text-align: end;}
.checkoutformbox form .fields-btn button{
    border: none;
    outline: none;
    padding: 7px 20px;
    font-weight: 400;
    background: var(--dark-orange);
    color: #fff;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: .3s linear;
}
.checkoutformbox form .fields-btn button:hover{
    background: var(--light-orange);
}
.billingaddress-container{display: none;}

.shipping-wrapper{}
.shipping-wrapper .shippingbox{
    border: 1px solid #ddd;
    margin: 0 0 10px;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
}
.shipping-wrapper .shippingbox .editshipping{
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 999;
    font-size: 12px;
    background: var(--light-orange);
    padding: 4px 8px;
    border-radius: 4px;
    color: #fff;
    letter-spacing: .5px;
    transition: .3s linear;
    font-weight: 400;
}
.shipping-wrapper .shippingbox .editshipping:hover{
    background: var(--light-green);
}
.shipping-wrapper .shippingbox.deliveryaddress{}
.shipping-wrapper .shippingbox.billingaddress{}
.shipping-wrapper .shippingbox .title{
    font-weight: 700;
    margin: 0 0 10px;
    display: inline-block;
    color: var(--light-green);
    text-transform: uppercase;
    font-size: 12px;
}
.shipping-wrapper .shippingbox .innershipbox{}
.shipping-wrapper .shippingbox .innershipbox p{
    color: var(--text-color);
    font-weight: 400;
    font-size: 15px;
    padding: 5px 0 0;
}

.shipping-wrapper .payment-method .field-btn{
    text-align: end;
}
.shipping-wrapper .payment-method .field-btn button{border: none;outline: none;padding: 5px 15px;background: var(--dark-orange);color: #fff;font-weight: 400;transition: .3s linear;font-size: 15px;border-radius: 5px;}
.shipping-wrapper .payment-method .field-btn button:hover{
    background: var(--light-orange);
}
.consultation-widget{
    padding: 50px 0;
}
.consultleft{}
.consultleft h3{
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 20px;
}
.consultleft h5{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}
.consultleft h6{
    color: #fff;
    margin: 40px 0 0;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.5;
}
.consultleft .aboutinfo{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0 0;
    flex-wrap: wrap;
}
.consultleft .aboutinfo .box{
    display: flex;
    align-items: center;
    gap: 15px;
}
.consultleft .aboutinfo .box .icon{}
.consultleft .aboutinfo .box .icon i{
    color: #fff;
    font-size: 40px;
    transition: .3s linear;
}
.consultleft .aboutinfo .box:hover .icon i{color: var(--secondary-color);}
.consultleft .aboutinfo .box .content{}
.consultleft .aboutinfo .box .content span{
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    display: block;
}
.consultleft .aboutinfo .box .content span:nth-child(1){}
.consultleft .aboutinfo .box .content span:nth-child(2){}
.consultright{text-align: center;position: relative;z-index: 1;}
.consultright img{width: 90%; margin: auto;}
.consultright img.overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    width: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    border: 5px solid var(--secondary-color);
    cursor: pointer;
}


.bookcall{
    background: var(--forth-color);
    padding: 50px 0;
}
.bookcall .maintitle{}
.bookcall .maintitle h2{}
.bookcall .maintitle p{
    width: 90%;
}

.bookcallbox{
    background: var(--primary-color);
    padding: 0 0 20px;
    border-radius: 10px;
}
.bookcallbox figure{
    text-align: center;
    background: var(--text1-color);
    border-radius: 10px 10px 0 0;
    margin: 0;
}
.bookcallbox figure img{width: 60%;margin: auto;}
.bookcallbox .content{
    text-align: center;
    background: var(--text1-color);
    border-radius: 0 0 10px 10px;
    padding: 10px 0 20px;
}
.bookcallbox .content h3{font-family: var(--secondary-font);font-size: 30px;margin: 0 0 10px;font-weight: 700;color: #fff;}
.bookcallbox .content span{
    color: var(--text-color);
    display: block;
    font-size: 15px;
}
.bookcallbox .content span:nth-child(1){}
.bookcallbox .content span:nth-child(2){}
.bookcallbox .content span:nth-child(3){}
.bookcallbox .actbtn{
    padding: 0 10px 20px;
    text-align: center;
}
.bookcallbox .actbtn .bookbtn{
    margin: 15px 0 0;
}
.bookcallbox .actbtn .bookbtn:hover{}
.bookcallbox .actbtn .bookbtn i{
    color: #ffffff;
    margin-right: 5px;
    transition: .3s linear;
}
.bookcallbox .actbtn .bookbtn:hover i{
    color: #fff;
}
.bookcallfoot{
    padding: 0 10px;
}
.bookcallfoot p{
    color: var(--text1-color);
    font-size: 14px;
    margin: 0 0 10px;
}
.bookcallfoot strong{
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1.1;
    display: inline-block;
    font-weight: 400;
    letter-spacing: .5px;
}

.important-notes{
    padding: 50px 0;
}
.notesbox{}
.notesbox h3{
    font-family: var(--secondary-font);
    color: #fff;
    font-size: 36px;
    letter-spacing: 1px;
}
.notesbox ul{
    padding: 15px 0 10px;
}
.notesbox ul li{
    color: #fff;
    font-weight: 300;
    font-size: 15px;
    padding: 0 0 10px;
}
.notesbox ul li span{
    display: block;
}
.notesbox h4{
    color: var(--text1-color);
    font-size: 18px;
}
.notesbox h4 span{
    color: var(--secondary-color);
}

.callpoints{
    padding: 40px;
    background: var(--text-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 40px 0 0;
}
.callpoints span{
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 500;
}
.callpoints span i{
    color: var(--text1-color);
    margin-right: 10px;
}



.login-wrapper{
    background: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    padding: 40px 50px;
    transition: .3s linear;
    margin-top: -20px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    width: 40%;
    background: #eee;
}
.login-wrapper.active{
    margin-top: 0;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}
.login_page_wrapper{
    position: relative;
    top: initial;
    left: initial;
    transform: initial;
    width: 50%;
    margin: auto;
    visibility: visible;
    opacity: 1;
    background: none;
    pointer-events: auto;
}
.login-wrapper:before{
}
.loginclose{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    color: #999;
    transition: .3s linear;
}
.loginclose:hover{
    color: var(--secondary-color);
}
.login-innerwrapper{
}
.login-innerwrapper .loginwrapper{text-align: center;}
.login-innerwrapper .loginwrapper .icon{
    width: 70px;
    height: 70px;
    margin: auto;
    background: #5aa13c30;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-innerwrapper .loginwrapper .icon i{
    color: var(--dark-green);
    font-size: 27px;
}
.login-innerwrapper .registerwrapper{
    flex-basis: 45%;
}
.login-wrapper h3{
    line-height: 1;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 20px 0 5px;
}
.login-wrapper p{
    color: #a9a9a9;
    font-weight: 200;
    font-size: 13px;
}
.login-wrapper form{
    margin: 15px auto 30px;
}
.login-wrapper form .fields{
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 0 10px;
}
.login-wrapper form .fields .forgetpass{
    display: block;
    margin-left: auto;
    width: fit-content;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: 5px;
}
.login-wrapper form .fields label{
    font-weight: 500;
    font-size: 13px;
}
.login-wrapper form .fields input{
    padding: 8px 15px;
    border: 1px solid #ddd;
    outline: none;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    background: transparent;
}
.login-wrapper form .fields input::placeholder{
    font-size: 14px;
    color: #999;
    font-weight: 400;
}
.login-wrapper form .fields-btn{}
.login-wrapper form .fields-btn .loading{
    width: 25px;
    height: 25px;
    border: 3px solid var(--light-orange);
    border-top: 3px solid transparent;
    animation: loading 0.5s linear infinite;
    border-radius: 50%;
    margin: auto;
}
.login-wrapper form .fields-btn button{
    border: none;
    outline: none;
    background: none;
    font-size: 14px;
    padding: 7px 15px;
    border: 1px solid var(--light-orange);
    font-weight: 400;
    color: var(--light-orange);
    border-radius: 5px;
    width: 100%;
    background: #e96b121c;
}
.login-wrapper form .fields-btn button:hover{
    background: #5aa13c1f;
    border-color: var(--dark-green);
    color: var(--dark-green);
}
.login-wrapper form .fields .passfield{
    position: relative;
    z-index: 1;
}
.login-wrapper form .fields .passfield a{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: var(--secondary-color);
}
.loginerror{}
.registererror{}
.loginformerror{
    color: red;
    font-size: 13px;
    padding: 3px 0 0;
    font-weight: 500;
}
.registererror p,
.loginerror p{
    font-size: 13px;
    padding: 3px 0 0;
    font-weight: 600;
    text-align: center;
}
.registererror p.success,
.loginerror p.success{
    color: green;
}
.registererror p.failed,
.loginerror p.failed{
    color: #e02525;
    text-align: center;
}
.loginterms{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #999;
    gap: 5px;
}
.loginterms a{
    color: #444;
    text-decoration: underline;
}
.loginterms a:hover{
    color: var(--secondary-color);
}


.login-wrapper .login-innerwrapper .otp-overlay {
}

.login-wrapper .login-innerwrapper .otp-modal {
}
.login-wrapper .login-innerwrapper .otp-modal img{width: 100px;display: none;}
.login-wrapper .login-innerwrapper .logo {
  height: 45px;
  margin-bottom: 15px;
}

.login-wrapper .login-innerwrapper .close-btn {
  position: absolute;
  right: 15px;
  top: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.login-wrapper .login-innerwrapper h2 {
  margin: 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.login-wrapper .login-innerwrapper .subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.login-wrapper .login-innerwrapper .subtitle strong{
    font-weight: 600;
    color: green;
}
.login-wrapper .login-innerwrapper .otp-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.login-wrapper .login-innerwrapper .otperror{}
.login-wrapper .login-innerwrapper .otperror p{
    font-size: 14px;
    padding: 10px 0 0;
}
.login-wrapper .login-innerwrapper .otperror p.failed{color: red;}
.login-wrapper .login-innerwrapper .otperror p.success{color: green;}
.login-wrapper .login-innerwrapper .otp-box {
  width: 48px;
  height: 48px;
  font-size: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.login-wrapper .login-innerwrapper .otp-box:focus {
  outline: none;
  border-color: #a1007d;
}

.login-wrapper .login-innerwrapper .verify-btn {
  width: 100%;
  background: #a1007d;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  border: none;
}

.login-wrapper .login-innerwrapper .verify-btn:hover {
  background: #8a0068;
}

.login-wrapper .login-innerwrapper .resend {
  margin-top: 15px;
  font-size: 13px;
}

.login-wrapper .login-innerwrapper .resend a {
  color: #a1007d;
  text-decoration: none;
  display: inline;
  font-weight: 500;
}


.login-wrapper .login-innerwrapper .login-overlaywrapper{
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 25%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}
.login-wrapper .login-innerwrapper .login-overlaywrapper.active{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}
.login-wrapper .login-innerwrapper .login-overlaywrapper .movingcircle{
    width: 50px;
    height: 50px;
    border: 6px solid #fff;
    border-radius: 50%;
    border-top: 6px solid transparent;
    animation: movein .6s linear infinite;
}
@keyframes movein {
    to{transform: rotate(360deg);}
}
.redirectingaccount{
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}
.redirectingaccount p{
    font-size: 15px;
    font-weight: 500;
    color: green;
}

.productwrapper{
    padding: 30px 0 0;
}
.productwrapper h3{
    font-weight: 600;
    font-size: 18px;
    padding: 0 0 10px;
}
.mobbottomcart{display: none;}

.mobheadercategory{
    overflow: auto;
    white-space: nowrap;
    padding: 15px 0 5px;
    border-bottom: 1px solid #ddd;
}
.mobheadercategory::-webkit-scrollbar{height: 0;}
.mobheadercategory a{
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}
.mobheadercategory a.active{
    color: var(--primary-color);
}
.mobheadercategory a.active:before{
    content: "";
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: -7px;
    border-radius: 4px 4px 0 0;
}
.mobheadercategory a img{width: 15px;padding: 0 0 5px;}
.mobfooter{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 5px;
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgb(0 0 0 / 48%);
}
.mobfooter a{
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    padding: 5px 10px;
    position: relative;
    z-index: 1;
}
.mobfooter a i{font-size: 15px;}
.mobfooter a.active{
    color: var(--primary-color);
}
.mobfooter a.active:before{
    content: "";
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0px;
    border-radius: 0 0 4px 4px;
}
.homepagecategory{
    display: flex;
    padding: 10px;
    overflow: auto;
}
.homepagecategory::-webkit-scrollbar{
    height: 0;
}

.homepagecategory a{
    flex: 0 0 30%;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    margin-right: 10px;
}
.homepagecategory a img{width: 100%;border-radius: 5px;margin: 0 0 5px;}
.homepagecategory a span{
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 1;      /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    z-index: 1;
    width: 90%;
    overflow: hidden;
    line-height: 1.3;
    font-size: 13px;
    margin: auto;
}

.widget-pages{
    padding: 20px 50px;
}
.widget-pages h2{}
.widget-pages h3{
    padding: 15px 0 5px;
    font-size: 17px;
    font-weight: 500;
}
.widget-pages ul li,
.widget-pages p{
    font-size: 15px;
    padding: 0 0 10px;
    text-align: justify;
    font-weight: 300;
}
.widget-pages ul li a,
.widget-pages p a{
    color: var(--light-green);
    display: inline-block;
    font-weight: 500;

} 
.widget-pages ul li a:hover,
.widget-pages p a:hover{
    text-decoration: underline;
    text-decoration-color: var(--light-orage);

}
.widget-pages ul{
    padding: 0 0 15px;
}
.widget-pages ul li{
    list-style: circle;
    list-style-position: inside;
    padding: 0 0 5px;
    font-weight: 500;
}
.usercancelorder-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 55%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.usercancelorder-wrapper.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.cancelform-wrapper{
    background: #fff;
    padding: 20px 25px;
    width: 40%;
    border-radius: 5px;
    position: relative;
    z-index: 9;
}
.cancelform-wrapper .closecancelform{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    z-index: 99;
}
.cancelform-wrapper h3{
    font-size: 18px;
    padding: 0 0 10px;
    color: var(--secondary-color);
    font-weight: 600;
}
.cancelform-wrapper form{}
.cancelform-wrapper form .fields{
    padding: 0 0 15px;
}
.cancelform-wrapper form .fields label{
    display: block;
    font-weight: 400;
    padding: 0 0 3px;
    font-size: 14px;
    color: #666;
}
.cancelform-wrapper form .fields select{
    width: 100%;
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.cancelform-wrapper form .fields textarea{
    width: 100%;
    height: 70px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    outline: none;
    font-size: 14px;
}
.cancelform-wrapper form .fields-btn{}
.cancelform-wrapper form .fields-btn button{
    background: green;
    color: #fff;
    padding: 5px 10px;
    border: none;
    outline: none;
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: .5px;
}
.cancelform-wrapper form .fields-btn button:hover{}
.cancelform-wrapper form .fields#otherreason-field{display: none;}
.approved-step{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #f1f1f1;
    margin: 10px 0 0;
    padding: 10px;
}
.approved-step li{
}
.approved-step li:nth-child(odd){position: relative;z-index: 1;color: #888;padding-left: 15px;font-size: 12px;}
.approved-step li:nth-child(odd):before{
    content: "";
    width: 10px;
    height: 10px;
    background: #ddd;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50px;
    transform: translateY(-50%);
}
.approved-step li.active:nth-child(odd):before{background: green;}
.approved-step li:nth-child(even){
    flex: 1;
    background: #e3e3e3;
    height: 2px;
}
.approved-step li.active:nth-child(odd){color: green; font-weight: 500;}
.approved-step li.active:nth-child(even){background: green;}
.cancelordertitle{
    position: absolute;
    top: 90px;
    right: 20px;
    color: red;
    width: 40%;
    text-align: end;
}
.ordercanceltxt{
    padding: 10px;
    border-top: 1px solid #eee;
}
.ordercanceltxt p{
    font-size: 13px;
    color: red;
}
.ordercanceltxt p span{
    background: red;
    color: #fff;
    letter-spacing: .5px;
    padding: 3px 6px;
    line-height: 1;
    border-radius: 2px;
    font-weight: 500;
}
.other_pages_content{}
.other_pages_content h3{}
.other_pages_content h4{}
.other_pages_content p{}
.other_pages_content ul{}
.other_pages_content ul li{}
.other_pages_content a{}

.search_page{padding: 20px 50px;}

@keyframes loading{
    to{transform: rotate(360deg);}
}
.emptydata{}
.emptydata p{font-size: 16px; font-weight: 600;}











.review_thanks_popup_overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(5px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:20px;
}

.review_thanks_popup{
    background:#fff;
    border-radius: 10px;
    padding: 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

/* Bottom Curve */
.review_thanks_popup::after{}

.success_icon{
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
    background:#43a047;
    color:#fff;
    font-size: 20px;
    font-weight: 900;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 0 0 10px rgba(67,160,71,.1);
    position:relative;
    z-index:2;
}

.review_thanks_popup h2{
    font-size: 30px;
    color: var(--light-orange);
    font-weight: 300;
    position:relative;
    z-index:2;
    margin: 0 0 10px;
}

.review_thanks_popup h4{
    color:#43a047;
    font-size: 18px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
    font-weight: 300;
}

.review_thanks_popup p{
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.4;
    width: 80%;
    margin:auto;
    position:relative;
    z-index:2;
}

.divider{
    width:100%;
    height:1px;
    background:#e7e7e7;
    margin:40px 0;
    position:relative;
    z-index:2;
    display: none;
}

.rating_box{
    color: var(--light-orange);
    font-size: 21px;
    background:#fff;
    position:relative;
    z-index:2;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.review_thanks_btns{
    display: flex;
    gap: 15px;
    justify-content: center;
    position:relative;
    z-index:2;
    padding: 10px 0 0;
}
.review_thanks_btns .thanks_btn{
    padding: 10px 20px;
    border: none;
    outline: none;
    background: var(--light-orange);
    color: #fff;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s linear;
}
.review_thanks_btns .thanks_btn.close{
    background: var(--dark-green);
}
.review_thanks_btns .thanks_btn:hover{
    background: var(--dark-orange);
}
.review_thanks_btns .thanks_btn.close:hover{
    background: var(--light-green);
}

.wishlist_wrapper{
    padding: 20px 50px;
}
.wishlist_item{}
.wishlist_item_img{}
.wishlist_item_img img{}
.wishlist_item_desc{}
.wishlist_item_desc h4{}
.wishlist_item_desc p{}
.wishlist_item_desc a{}
.wishlist_item_desc a:hover{}


.order_place_thanks{
    text-align: center;
}
.order_place_thanks .thankyou-card{
    width: 50%;
    background: #e96b1214;
    margin: auto;
    padding: 30px;
    text-align:center;
    position: relative;
}

.order_place_thanks .thankyou-card .success-icon{
    width: 70px;
    height: 70px;
    margin:auto;
    border-radius:50%;
    background: var(--light-orange);
    display:flex;
    align-items:center;
    justify-content:center;
}

.order_place_thanks .thankyou-card .success-icon i{
    font-size: 45px;
    color: #fff;
    line-height: 1;
}

.order_place_thanks .thankyou-card .placed_title{
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 300;
    margin-top:25px;
}

.order_place_thanks .thankyou-card .placed_subtitle{
    font-size: 18px;
    color: var(--text-color);
    margin-top:15px;
}

.order_place_thanks .thankyou-card .order-box{
    margin: 20px 0;
    background: #fff;
    border:1px solid #e2ebe3;
    border-radius: 10px;
    padding: 10px;
    display:flex;
    align-items:center;
    gap:20px;
    text-align:left;
}

.order_place_thanks .thankyou-card .order-box .order-icon{
    width: 80px;
    height: 80px;
    background:#e9f3ea;
    border-radius: 8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.order_place_thanks .thankyou-card .order-box .order-icon i{
    font-size: 30px;
    color:#17863b;
}

.order_place_thanks .thankyou-card .order-box .order-content h4{
    font-size: 18px;
    margin-bottom:10px;
}

.order_place_thanks .thankyou-card .order-box .order-content h4 span{
    color:#20a546;
}

.order_place_thanks .thankyou-card .order-box .order-content p{
    color: var(--text-color);
    font-size: 15px;
    line-height:1.6;
}


.order_place_thanks .thankyou-card .note{
    font-size: 16px;
    color: var(--text-color);
    line-height:1.6;
}


.order_place_thanks .thankyou-card .placed_btn{
    padding: 35px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.order_place_thanks .thankyou-card .placed_btn a{
    border: 1px solid var(--dark-green);
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: .5px;
}
.order_place_thanks .thankyou-card .placed_btn a.continue-shopping{
    background: var(--dark-green);
    color: #fff;
}
.order_place_thanks .thankyou-card .placed_btn a.continue-shopping:hover{}
.order_place_thanks .thankyou-card .placed_btn a.view_order{}
.order_place_thanks .thankyou-card .placed_btn a.view_order i{margin-right: 5px;}
.order_place_thanks .thankyou-card .placed_btn a.view_order:hover{}
.productswidget .mobfilterhead{display: none;}



.login-wrapper .login-innerwrapper .otp-overlay {}

.login-wrapper .login-innerwrapper .otp-modal {
  text-align: center;
}
.login-wrapper .login-innerwrapper .otp-modal img{width: 100px;display: none;}
.login-wrapper .login-innerwrapper .logo {
  height: 45px;
  margin-bottom: 15px;
}

.login-wrapper .login-innerwrapper .close-btn {
  position: absolute;
  right: 15px;
  top: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.login-wrapper .login-innerwrapper h2 {
  margin: 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.login-wrapper .login-innerwrapper .subtitle {color: #a9a9a9;font-weight: 200;font-size: 13px;}
.login-wrapper .login-innerwrapper .subtitle strong{
    font-weight: 600;
    color: green;
}
.login-wrapper .login-innerwrapper .subtitle strong + a{
    display: inline-block;
    background: #3d8b2e1f;
    border-radius: 3px;
    color: var(--dark-green);
    font-size: 16px;
    padding: 3px 5px;
    transition: .3s linear;
}
.login-wrapper .login-innerwrapper .subtitle strong + a:hover{
    background: var(--light-orange);
    color: #fff;
}
.login-wrapper .login-innerwrapper .otp-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.login-wrapper .login-innerwrapper .otperror{}
.login-wrapper .login-innerwrapper .otperror p{
    font-size: 14px;
    padding: 10px 0 0;
}
.login-wrapper .login-innerwrapper .otperror p.failed{color: red;}
.login-wrapper .login-innerwrapper .otperror p.success{color: green;}
.login-wrapper .login-innerwrapper .otp-box {
  width: 48px;
  height: 48px;
  font-size: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.login-wrapper .login-innerwrapper .otp-box:focus {
  outline: none;
  border-color: #f5822a66;
}

.login-wrapper .login-innerwrapper .verify-btn {border: none;outline: none;background: none;font-size: 14px;padding: 7px 15px;border: 1px solid var(--light-orange);font-weight: 400;color: var(--light-orange);border-radius: 5px;width: 100%;background: #e96b121c;}

.login-wrapper .login-innerwrapper .verify-btn:hover {background: #5aa13c1f;border-color: var(--dark-green);color: var(--dark-green);}

.login-wrapper .login-innerwrapper .resend {
  margin-top: 15px;
  font-size: 13px;
}

.login-wrapper .login-innerwrapper .resend a {
  color: var(--primary-orange);
  text-decoration: none;
  display: inline;
  font-weight: 500;
}
.login-wrapper .login-innerwrapper .resend a:hover{
    color: var(--dark-green);
}   

