header{
    z-index: 981;
    position: sticky !important; 
    top: 0;
}
.headerContainer{
    background-color: var(--bgClr);
    border-bottom: 1px solid var(--blackClrOp2);
    position: relative;
}
.logoImg{
    height: 33px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.headerCol1{
    margin: 10px 0;
}
.col1Div{
    align-items: flex-start;
    position: relative;
}
.menuBtn{
    background-image: url("/src/menu.svg");
    background-size: 17px;
}
/* cart */
.cartBtn{
    background-image: url("/src/bag.svg");
    background-size: 15px;
    pointer-events: none;
}
.cartAnchor{
    position: relative;
}
.cartCounterSpan{
    width: 17.5px;
    height: 17.5px;
    border-radius: 50%;
    background-color:var(--redClr);
    color: var(--bgClr);
    position: absolute;
    right: -15%;
    bottom: -15%;
    display: none;
}
.largeCartDiv{
    position: absolute;
    right: 0;
    width: 400px;
    height: 360px;
    background-color: var(--bgClr);
    box-shadow: 0 0 15px var(--blackClrOp2);
    border-radius: 7px;
    margin-top: 32px;
    pointer-events: none;
    opacity: 0;
    border: 1px solid var(--blackClrOp3);
    grid-template-rows: 40px 1fr 40px;
    padding: 0 10px;
    box-sizing: border-box;
}
.emptyCart{
    height: 100%;
    box-sizing: border-box;
    padding-top: 90px;
    background-image: url("/src/sad.svg");
    background-size: 50px;
    background-position: center top 38%;
    background-repeat: no-repeat;
}
.largeCartHeader{
    border-bottom: 1px solid var(--blackClrOp2);
}
.seeCart.seeAll{
    color: var(--txtSecendaryClr);
    background-image: url("/src/leftArrowBlue.svg");
}
.largeCartDetailsList{
    overflow-y: auto;
    overflow-x: hidden;
    gap: 10px;
    align-items: center;
    padding-top: 15px;
}
.cartParentDiv{
    border-bottom: 1px solid var(--blackClrOp3);
    padding-bottom: 15px;
    width: 94%;
    position:relative;
}
.cartParentDiv .hintText{
    color: var(--redClr);
    padding-right: 30px;
    background-image: url("/src/redInfo.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: right 5px center;
}
.greenText{
    color: var(--greenClr) !important;
    background-image: url("/src/greenInfo.svg") !important;
}
.notExistCartItem{
    opacity: .7;
}
.cartParentDiv:last-child{
    border-bottom: none;
}
.cartInfoDiv{
    padding: 5px;
    grid-template-columns: 33% 65%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.removeListItem{
    grid-template-columns: 65px 1fr 35px;
    justify-content: flex-start;
    align-items: center;
}
.deleteRemovedBtn{
    width: 35px;
    height: 35px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center;
    background-image: url("/src/trash.svg");
}
.cartRemoveListHeader{
    color: var(--redClr);
    padding-right: 30px;
    background-image: url("/src/redInfo.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: right 10px center;
    background-color: var(--tomatoOp3Clr);
    width: 94%;
    border-radius: 7px;
    padding: 5px 35px 5px 5px;
    align-self: center;
    margin-top: 30px;
}
.propertyText{
    position: relative;
    padding-right: 20px;
}
.cartPriceDiv{
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--blackClrOp3);
}
.cartPriceDiv .offText{
    position: absolute;
    right: 0;
    top: 0;
}
.propertyText::before{
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--txtAClr);
    transform: translateY(-50%);
}
.cartImage{
    border-radius: 7px;
    border: 1px solid var(--blackClrOp4);
    box-sizing: border-box;
    aspect-ratio: 1/1;
}
.discountText{
    margin-top: 5px;
    color: var(--greenClr);
}
.cartManageNumberDiv{
    grid-template-columns: 35px 1fr 35px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--blackClrOp2);
    border-radius: 7px;
    background-color: var(--blackClrOp6);
    margin-top: 10px;
    width: 65%;
    align-self: flex-end;
}
.cartManageNumberDiv button{
    width: 35px;
    height: 35px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.cartManageNumberDiv .increaseNumberBtn{
    background-image: url("/src/plus.svg");
}
.cartManageNumberDiv .decreaseNumberBtn{
    background-image: url("/src/minus.svg");
}
.cartManageNumberDiv .disableBtn{
    opacity: .3;
    cursor: default;
}
.cartManageNumberDiv .removeBtn{
    background-image: url("/src/trash.svg");
    background-size: 17px !important;
}
.largeCartFooter{
    border-top: 1px solid var(--blackClrOp2);
}
.submitCart{
    background-color: var(--redClr);
    color: var(--bgClr);
    padding: 5px 15px;
    box-sizing: border-box;
    height: 30px;
    border-radius: 5px;
}
/* user btn */
.mainUserBtn{
    display: none;
}
.mainSearch{
    display: none;
    width: 380px;
}
.searchFrom{
    position: relative;
}
.searchInput{
    height: 35px;
    width: 100%;
    direction: rtl;
    padding: 0 38px 0 15px;
    background-image: url("/src/search.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: right 9px center;
    box-sizing: border-box;
}
.searchInput:placeholder-shown + .doSearch{
    opacity: 0;
}
.doSearch{
    position: absolute;
    left: 0;
    height: 35px;
    background-color: var(--greyClr2);
    padding: 0 10px;
    border-radius: 7px;
    border: 1px solid var(--blackClrOp3);
    box-sizing: border-box;
    transition: opacity .6s;
}
.headerCol2{
    grid-template-columns: 30px 80%;
    justify-content: space-between;
    align-items: center;
    width: 94%;
    margin: 15px auto;
    max-width: 600px;
}
.userBtn{
    background-image: url("/src/user.svg");
    background-size: 17px;
}
/*----------------------------- haederCol3 */
.headerCol3{
    direction: rtl;
    display: none;
}
.headerMainLinks{
    font-size: .92em;
}
.mainLinkItem{
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: right 5px center;
    height: 30px;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: border-bottom .6s;
    padding: 10px 0 10px 5px;
}
.mainLinkItem:hover{
    border-bottom: 1px solid tomato;
}
.catListContainer{
    width: 100%;
    min-height: 300px;
    position: absolute;
    right: 0;
    z-index: 982;
    display: none;
    margin-top: 31px;
    background-color: var(--greyClr2);
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    transform: translateY(-1px);
    border: 1px solid var(--blackClrOp2);
    border-top-color: var(--blackClrOp4);
    box-shadow: 0 10px 15px var(--blackClrOp1);
}
.catListContainer::after{
    content: "";
    width: 1px ;
    height: 100%;
    min-height: 300px;
    right: 20%;
    position: absolute;
    background-color: var(--blackClrOp2);
    pointer-events: none;
}
.catLink:hover + .catListContainer , .catListContainer:hover{
    display: -webkit-flex;
    display: flex;
}
.mainCatList{
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.catDetailsDiv{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 80%;
    display: none;
}
.catDetailsDiv > div{
    flex-direction: column;
    box-sizing: border-box;
    padding: 5px;
    flex-wrap: wrap;
}
.subLinkItem{
    padding: 5px 15px;
    cursor: pointer;
    padding-right: 35px;
    background-image: url("/src/link.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: right 10px center;
    transition: background-color .6s;
    position: relative;
    width: 250px;
}
.subLinkItem:hover{
    background-color: var(--blackClrOp4);
}
.subLinkItem::after{
    content: "";
    background-image: url("/src/leftArrow.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    opacity: .4;
    transition: opacity .6s;

}
.subLinkItem:hover::after{
    opacity: 1;
}
.catItem{
    width: 20%;
    padding: 7px 35px 7px 5px;
    cursor: pointer;
    border-right: 3px solid transparent;
    background-color: transparent;
    box-sizing: border-box;
    transition: background-color .6s , border-right .6s;
}
.catLink{
    background-image: url("/src/menu.svg");
    padding-right: 30px;
}
.offerLink{
    background-image: url("/src/hot.svg");
    padding-right: 32px;
}
.blogLink{
    padding-right: 33px;
    background-image: url("/src/blog.svg");
}
.trackingLink{
    padding-right: 33px;
    background-image: url("/src/tracking.svg");
}
.faqLink{
    padding-right: 30px;
    background-image: url("/src/faq.svg");
}
.aboutLink{
    padding-right: 32px ;
    background-image: url("/src/info.svg");
}
.catItem:hover{
    border-right: 3px solid tomato;
    background-color: rgba(255, 99, 71, 0.082);
}
.catItem:hover + .catDetailsDiv,.catDetailsDiv:hover{
    display: -webkit-flex;
    display: flex;
    background-color: var(--greyClr2);
}
/* ------------------- navigation */
.navCloser{
    width: 100%;
    height: 100vh;
    z-index: 983;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}
.navCloser.active{
    opacity: .6;
    pointer-events: unset;
}
.mobileNavigationContainer
{
    width: 0;
    height: 100vh;
    background-color: var(--bgClr);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 984;
    white-space: nowrap;
    flex-direction: column;
    overflow-x: hidden;
    transition: width .3s;
    overflow-y: auto;
}
.mobileNavigationContainer.active{
    width: 320px;
}
.closeNavBtn{
    background-image: url("/src/close.svg");
    background-size: 19px;
    margin: 10px 0 10px 10px;
    min-height: 32px;
}
.mobileNavigationContainer hr{
    width: 94%;
    margin: 0 auto;
    border: .5px solid var(--blackClrOp5);
}
.staticCat{
    width: 94%;
    margin: 3px auto 0;
    background-repeat: no-repeat;
    background-position: right 7px center;
    padding: 5px 35px 5px 5px;
    border-radius: 7px;
    background-color: transparent;
    transition: background-color .6s;
}
.staticCat:hover{
    background-color: var(--blackClrOp5);
}
.staticCat.home{
    background-image: url("/src/home.svg");
    background-size: 17px;
    margin-top: 10px;
}
.staticCat.offer{
    background-image: url("/src/hot.svg");
    background-size: 19px;
}
.staticCat.blog{
    background-image: url("/src/blog.svg");
    background-size: 16px;
}
.staticCat.message{
    background-image: url("/src/message.svg");
    background-size: 14px;
}
.staticCat.about{
    background-image: url("/src/info.svg");
    background-size: 15px;
    margin-bottom: 10px;
}
.staticCat.guarantee{
    background-image: url("/src/guarantee.svg");
    background-size: 18px;
}
.staticCat.tracking{
    background-image: url("/src/tracking.svg");
    background-size: 18px;
}
.mobileLinkList{
    margin: 15px 0 30px;
}
.catParentDiv{
    position: relative;
    width: 94%;
    align-self: center;
}
.catLabel{
    padding: 7px 35px 7px 10px;
    border-radius: 7px;
    cursor: pointer;
    background-image: url("/src/link.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}
.subCatList::after{
    position: absolute;
    left: 8px;
    top: 12px;
    background-image: url("/src/back.svg");
    background-position: center;
    content: "";
    width: 18px;
    height: 18px;
    background-size: 16px;
    background-repeat: no-repeat;
    transition: transform .3s;
}
.subCatList{
    height: 0;
    overflow: hidden;
    border-right: 4px solid var(--blackClrOp4);
    background-color: var(--blackClrOp6);
}
.catNameInput:checked + .subCatList{
    height: unset;
}
.catNameInput:checked + .subCatList::after{
    transform: rotate(-90deg);
}

.subLink{
    padding: 10px 35px 10px 10px;
    background-image: url("/src/link.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    border-radius: 7px;
    transition: background-color .6s;
    position: relative;
}
.subLink:hover{
    background-color: var(--blackClrOp7);
}
.subLink::after{
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("/src/back.svg");
    background-position: center;
    background-size: 16px;
    background-repeat: no-repeat;
    transition: opacity .6s;
    height: 35px;
    width: 35px;
    opacity: 0;
}
.subLink:hover::after{
    opacity: 1;
}
/* ------------- footer */
.footerContainer{
    flex-direction: column;
    margin-top: 30px !important;
    border-top: 1px solid var(--blackClrOp2);
    padding-bottom: 20px;
}
.fooeterHeader{
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    margin-top: 30px;
}
.goToTop{
    padding: 5px 15px 5px 35px;
    border: 1px solid var(--blackClrOp2);
    border-radius: 7px;
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: left 5px center;
    background-image: url("/src/leftArrow.svg");
}
.siteDescription{
    text-align: justify;
    margin-top: 20px;
}
.footerAbout{
    padding-right: 35px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-image: url("/src/text.svg");
}
.infoIconDiv{
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 5px;
    align-self: center;
    margin-top: 30px;
    width: 100%;
}
.inFoIcon{
    background-size: 35px;
    background-repeat: no-repeat;
    background-position: center top 10px;
    padding: 50px 5px 15px 5px;
    background-color: var(--txtSecendaryClrOp3);
    border-radius: 7px;
    text-align: center;
    font-size: .8em;
}
.guaranteeIcon{
    background-image: url("/src/guaranteeDark.svg");
}
.shippingIcon{
    background-image: url("/src/shippingDark.svg");
}
.supportIcon{
    background-image: url("/src/supportDark.svg");
}
.siteMapDiv{
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}
.siteMap{
    margin-top: 25px;
}
.siteMapItemDiv{
    display: -ms-grid;
    display: -moz-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 0;
    margin-top: 10px;
}
.contactIcon{
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding-right: 33px;
}
.addressIcon{
    background-image: url("/src/location.svg");
}
.phoneIcon{
    background-image: url("/src/call.svg");
}
.emailIcon{
    background-image: url("/src/email.svg");
}
/* msgBtn */
.msgBtn{
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 902;
    border-radius: 50%;
    background-color: var(--txtSecendaryClr);
    box-shadow: 0 0 10px var(--txt5Clr);
    background-image: url("/src/chat.svg");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    transition: background-color .6s;
}
.unreadMsg::after{
    content: "";
    position: fixed;
    left: 55px;
    bottom: 55px;
    width: 10px;
    height: 10px;
    background-color: var(--redClr);
    border-radius: 50%;
    z-index: 905;
    animation: blank .8s infinite linear alternate-reverse;
}
.msgSignAlertDiv{
    justify-content: flex-end;
    align-items: center;
}
.chatLink{
    background-color: var(--blackClrOp5);
    border-radius: 7px;
    padding: 5px 35px 5px 15px;
    background-image: url("/src/link.svg");
    background-size: 16px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    transition: background-color .6s;
    border: 1px dashed var(--blackClrOp1);
}
.chatLink:hover{
    background-color: var(--blackClrOp4);
}
.msgBtn:hover{
    background-color: var(--txtSecendaryDarkerClr2);
}
@media screen and (min-width:769px) {
    .menuBtn,.navCloser,.mobileNavigationContainer,.headerCol2{
        display: none !important;
    }
    .mainUserBtn,.headerCol3,.mainSearch{
        display: block;
    }
    .siteMapDiv{
        display: -ms-grid;
        display: -moz-grid;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
        direction: rtl;
        width: 700px;
        margin-right: auto;
    }
    .siteMap{
        margin: 0;
        border-right: 1px solid var(--blackClrOp1);
        padding-right: 25px;
    }
    .siteMapItemDiv{
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .cartAnchor:hover + .largeCartDiv , .largeCartDiv:hover{
        opacity: 1;
        pointer-events: unset;
        z-index: 893;
    }
    .infoIconDiv{
        margin-right: auto;
        gap: 15px;
        width: unset;
    }
    .inFoIcon{
        padding: 50px 10px 15px 10px;
        font-size: unset;
    }
}
@media screen and (min-width:968px) {
    .headerMainLinks{
        font-size: 1em;
        gap: 10px;
    }
    .msgBtn{
        left: 20px;
        bottom: 20px;
    }
    .unreadMsg::after{
        left: 60px;
        bottom: 60px;
    }
}
@keyframes blank {
    from {
        opacity: .2;
    }
    to{
        opacity: 1;
    }
}