@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');


*{
    padding: 0;
    margin: 0;
    font-family: "Cairo", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
	list-style: none;
	scroll-behavior: smooth;
}
:root{
    --bg-color: #ffffff;
	--text-color: #000;
	--secound-color: rgba(64, 84, 86, 0.2);
	--main-color: rgb(64, 84, 86);

	--big-font: 5rem;
	--h2-font: 3rem;
	--p-font: 1.1rem;
    --small-font: .5rem;
}
body{
    /* color: var(--main-color); */
}
header{
    width: 80%;
    height: 100px;
    /* display: flex; */
    margin: auto;
    /* background-color: rgba(64, 84, 86, 0.6); */
    /* background: -webkit-radial-gradient(  50%    50% , closest-corner, rgba(64, 84, 86, 0.1), rgba(64, 84, 86, 0.1),white); */
    background-color: #fff;
    color: var(--main-color);




    position: sticky;
    top: 0;
    z-index: 5;
}
.container{
    /* background-color: brown; */
    width: 80%;
    margin: auto;
}
.container:first-child h2{
    color: var(--main-color);
}
.header-content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}
.header-logo{
    width: 100px; 
}
nav ul{
    display: flex;
    flex-wrap: wrap;
}
nav ul li{
    list-style: none;
    margin: 0px 10px;
    font-size: var(--p-font);
    padding: 6px;
    position: relative;

    /* display: flex;
    flex-wrap: wrap; */
    color: var(--main-color);

}
@media (max-width: 1015px){
    nav ul li{
        font-size: var(--p-font);
    }
}
nav ul li a{
    color: var(--main-color);
     
}
nav ul li a::before{
    /* top & bottom */
    content: "";
    position: absolute;
    border-width: 2px 0px;
    border-style: solid;
    border-color: var(--main-color);
    width: 100%;
    height: 94%;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transform: scale(0, 1);
    transform-origin: left;

    transition: 0.6s;
}
nav ul li a:hover::before{
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
}
nav ul li a::after{
    /* left & right */
    content: "";
    position: absolute;
    border-width: 0px 2px;
    border-style: solid;
    border-color: var(--main-color);
    width: 97%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: bottom;

    transition: 0.3s;
}
nav ul li a:hover::after{
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
}

.icon-header{
        position: relative; 
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        flex-wrap: wrap;
}

.icon-header i{
    font-size: 21px;
    margin: 0px 10px;
    
}

.zero{
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: -6px;
    right: 73px;
    border-radius: 50%;

    
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: var(--main-color);
}
.your-bag{
    margin-left: 25px;
}



.dropdown{
    position: relative;
    
}
.dropdown-menu{
    position: absolute;
    width: 400px;
    /* border: 1px solid var(--main-color); */
    /* background: -webkit-radial-gradient(  50%    50% , closest-corner, rgba(64, 84, 86, 0.1), rgba(64, 84, 86, 0.1),white); */
    background-color: var(--secound-color);
    /* background-color: #fff; */
    padding: 5px;
    margin-top: 10px;
    transform: scale(0);
    transition: 1s;
    opacity: 0;
    visibility: hidden;
    margin-left: -6px;

}
.dropdown:hover .dropdown-menu{
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.dropdown-menu ul{
    display: table-cell;
    text-align: left;
}
.menu li a {
    font-size: 13px;
}


/* Home */
.container{

}
.home-content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap-reverse;
    height: 70vh;

        background: -webkit-radial-gradient(  50%    50% , closest-corner, rgba(64, 84, 86, 0.2), rgba(64, 84, 86, 0.2),white);

}
.home-content h2{
    font-size: var(--big-font);
    /* color: #fff; */
}
.home-content button{
    width: 100px;
    height: 50px;
    border: 0;
    padding: 5px;
    margin-top: 60px;
    border-radius: 2px;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
}
.home-content img{
    width: 500px;

    transition: 1s;
    animation-name: change;
    animation-duration: 3s;

}
@keyframes change {
    0%{
        transform: scale(0.5, 0.5);
    }
    100%{
        transform: scale(1, 1);
    }
}

/* Special category */
.container{

}
.category-content{
    position: relative;

}
.category-content::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    right: 0;
    background-color: var(--main-color);
}
.category-title{
    text-align: center;
    font-size: 35px;
    padding: 5px;
    margin: 15px;
    position: relative;
}
.category-title::before{
    content: "";
    position: absolute;
    transform: scale(1 , 1);
    width: 100px;
    height: 3px;
    bottom: 0;
    left: 47%;
    background-color: var(--main-color);
    transition: 1s;
}
.category-title:hover::before{
    transform: scale(1.5, 1.5);
}
.category-one{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px 0px 50px 0px;
}


.category-one .Chair1{
    position: relative;

    background: -webkit-radial-gradient(  50%    80% , closest-corner, rgba(64, 84, 86, 0.8), rgba(64, 84, 86, 0.1),white);

}
.category-one .Chair1 img{
    
} 
.category-one .Chair1 p{
    padding: 5px;
    /* color: rgba(128, 128, 128, 0.699); */
    color: rgba(0, 0, 0, 0.6);
} 
.category-one .Chair1 h2{
    font-size: var(--p-font);
    padding: 5px;
} 
.category-one .Chair1 i{
    width: 35px;
    height: 35px;
    color: #fff;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    
    position: absolute;
    bottom: 0;
    right: 0;
    visibility: hidden;
    transition: .1s;
} 
.Chair1:hover i{
    visibility: visible; 
}

.Chair1 img{
    width: 300px;
    height: 300px;
}


.category-two{
    display: grid;
    grid-template-columns: repeat(4, 1fr) ;
    grid-template-rows: minmax(400px, auto);
    column-gap: 20px;
    margin: 15px 0px 50px 0px;


}
.category-two-details{
    grid-column: 1 / 3;
    background-color: var(--secound-color);
    padding: 20px;
    position: relative;
}
.category-two-details > p{
    margin-top: 20px;
    letter-spacing: 1px;
}


.category-two-details::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 3px;
    bottom: 25px;
    right: 25px;

    background-color: var(--main-color);
}
.category-two-details::before{
    content: "";
    position: absolute;
    width: 45px;
    height: 3px;
    bottom: 25px;
    right: 75px;

    background-color: var(--main-color);
}
.category-two-details p::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 3px;
    bottom: 25px;
    right: 125px;

    background-color: var(--main-color);
}
.category-two-details-top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.category-two-details-top i{
    font-size: 60px;
    margin: 0px 8px;
    color: var(--main-color);

}
.category-two-details-top h2{
    
}
.category-two-details-top p{
    
}

.discount{  
    /* position: relative; */
    transition: 1s;
    
    background-size: cover;
    flex-shrink: 1;
    /* background-color: aqua; */
        /* background-color: rgba(35, 48, 49, 0.185); */
        background-color: var(--secound-color);

}

.img1-discount{
    background-image: url(../img/13.png);
}
.img2-discount{
    background-image: url(../img/12.png);

}
.discount:hover{
    transform: scale(1.1);
    
}

.discount-text{
    margin: 30px 30px;
    font-weight: bold;
}

.discount-text p{
    /* color: rgb(35, 48, 49); */
    color: var(--main-color);
}
.discount-text h3{
    /* color: var(--main-color); */
    color: rgba(255, 255, 255, 0.9);
}

.category-three{

    display: flex;
    justify-content: space-around;
    /* flex-wrap: wrap; */
    text-align: center;
    padding: 20px 0px 50px 0px;
    margin: 15px 0px 50px 0px;

}
.icons{
    margin: auto;
    padding: 0px 70px;
    border-right: 1px solid var(--main-color);

}
.border-rigth-0{
    border-right: 0;
}
.icon-img{
    width: 50px;
    height: 50px;    

}
.icon1{
    background-image: url(../img/Easy\ Returns.svg);
    width: 80px;
    height: 70px;
    background-repeat: repeat-y;
    /* background-size: cover; */
    background-position: center 0px;
    margin: auto;
    transition: all .3s;

    
    /* background-color: ; */

    
    
}
.icons:hover .icon1{
    background-position: center -140px;
}
/* ... */
.icon2{
    background-image: url(../img/Fast\ Shipping.svg);
    /* color: #ffffff; */
    width: 80px;
    height: 64px;
    background-repeat: repeat-y;
    /* background-size: cover; */
    background-position: center 0px;
    margin: auto;
    transition: all .3s;
}
.icons:hover .icon2{
    background-position: center -64px;
}
/* ... */
.icon3{
    background-image: url(../img/Free\ Delivery.svg);
    width: 70px;
    height: 55px;
    background-repeat: repeat-y;
    /* background-size: cover; */
    background-position: center 0px;
    margin: auto;
    transition: all .3s;
}
.icons:hover .icon3{
    background-position: center -55px;
}
/* .... */
.icon4{
    background-image: url(../img/Quality\ Products.svg);
    width: 80px;
    height: 60px;
    background-repeat: repeat-y;
    /* background-size: cover; */
    background-position: center 0px;
    margin: auto;
    transition: all .3s;
}
.icons:hover .icon4{
    background-position: center -60px;
}
/* ... */
.icon5{
    background-image: url(../img/Support.svg);
    width: 80px;
    height: 65px;
    background-repeat: repeat-y;
    /* background-size: cover; */
    background-position: center 0px;
    margin: auto;
    transition: all .3s;
}
.icons:hover .icon5{
    background-position: center -65px;
}
.icon-info h2{
    font-size: 1.3rem;
    /* letter-spacing: 1px; */
    padding: 7px;
}
.icon-info p{
    color: rgba(0, 0, 0, 0.7);
    padding: 3px;
    font-size: var(--p-small-font);
}


/*  */


.list-product{
    display: flex;
    justify-content: center;
    list-style: none;
}
.list-product li{
    margin: 10px 20px;
}
.products-items{
    /* display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:20px; */
    display: flex;
    justify-content: space-evenly;
    /* flex-wrap: wrap; */
    margin: 30px 0px;
}
.product-img{
    position: relative;
}
.product-img img, .product-overlay img{
    width: 400px;
    height: 400px;
}
.product-overlay{
    position: absolute;
    top: 0;
    left: 0;
    transform:scalex(0);
    opacity: 0.9;
    transition: 0.2s;
}

.product-overlay ul{
    /* hero image */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.product-overlay ul li{
    width: 40px;
    height: 40px;
    background-color: var(--maincolor);
    display: inline-block;
    text-align: center;
}
.product-overlay ul i{
    color: #fff;
    /* color: var(--main-color); */
    line-height: 40px;
    padding: 5px;
    font-size: 20px;
    cursor: pointer;
}
.product-item:hover .product-overlay{
    transform: scalex(1);
}
.product-info p{
    padding: 2px;
    /* color: var(--main-color); */
}
.product-info h3{
    padding: 2px;
}
.product-info i{
    color: rgb(221, 221, 78);

}
.product-info span{
    display: block;
    margin: 5px 0;
}
.product-info i{
    margin-top: 10px;
}