/* Start General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* transition role for all website */
    transition: all 0.08s linear;
}
body {
    font-family: 'Jost', sans-serif;
}
img {
    cursor: pointer;
}
i {
    cursor: pointer;
}
button {
    cursor: pointer;
    outline: 0;
    border: 0;
}
input {
    outline: 0;
    border: 0;
}
a {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
li {
    list-style-type: none;
    display: inline-block;
}
.container {
    width: 85%;
    margin: auto;
}
/* End General */
/* Start Header */
/* part-1 in header */
.section-1-h {
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.section-1-h a {
    position: relative;
    color:#2b2721;
    font-size: 14px;
    padding: 5px 10px;
}
.section-1-h a::before {
    content: "";
    width: 2px;
    height: 0;
    left: 0;
    bottom: 0; 
    background: #999794;
    position: absolute;
    transition: 0.4s;
}
.section-1-h a:hover::before {
    height: 100%;
}
.section-1-h a::after {
    content: "";
    width: 2px;
    height: 0;
    right: 0;
    top: 0;
    background: #999794;
    position: absolute;
    transition: 0.4s;
}
.section-1-h a:hover::after {
    height: 100%;
}
.icon-h:hover i {
    transform: rotateY(180deg);
    color: #999794;
}
/* part-2 in header */
.section-2-h {
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.first-sec i {
    color: #706d6d;
    font-size: 56px;
    filter: drop-shadow(4px 4px 6px rgba(0,0,0,0.4));
}
.first-sec span {
    color: #706d6d;
    margin-left: 4px;
    font-weight: bold;
    font-size: 26px;
}
.first-sec i:hover,
.first-sec span:hover {
    color: #2b2721;
}
.section-2-h a {
    font-size: 18px;
    color: #2b2721;
    padding: 10px;
}
.section-2-h a:hover {
    color: #808080;
}
.section-2-h .second-sec .link-second {
    position: relative;
}
.section-2-h .second-sec .link-second::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 97%;
    height: 95%;
    border-color: #999794;
    border-style: solid;
    visibility: hidden;
    border-width: 2px 0;
    transition: 0.4s;
    transform: scale(0,1);
    transform-origin: left;
}
.section-2-h .second-sec .link-second::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
    height: 100%;
    border-color: #999794;
    border-style: solid;
    visibility: hidden;
    border-width: 0 2px;
    transition: 0.4s;
    transform: scale(1,0);
    transform-origin: bottom;
}
.section-2-h .second-sec .link-second:hover::after {
    visibility: visible;
    transform: scale(1,1);
}
.section-2-h .second-sec .link-second:hover::before {
    visibility: visible;
    transform: scale(1,1);
}
.section-2-h .mul-links {
    z-index: 1000;
    position: relative;
}
.section-2-h .mul-links .arrow {
    padding-left: 4px;
    font-size: 15px;
}
.section-2-h .mul-links .drop-list-h {
    background: #fff;
    width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: absolute;
    top: 55px;
    left: -122%;
    border-radius: 20px;
    box-shadow: 6px 6px 12px black;
    transition: 1s;
    visibility: hidden;
    transform: scale(0,0);
    z-index: 1000;
}
.section-2-h .mul-links:hover .drop-list-h {
    visibility: visible;
    transform: scale(1,1);
}
.section-2-h .drop-list-h li {
    display: block;
    margin: 5px;
}
.section-2-h .drop-list-h .inner-li {
    font-weight: 500;
    height: 30px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #2b2721;
    width: 45px;
}
.section-2-h .drop-list-h li a {
    padding: 0;
}
.section-2-h .drop-list-h li .links-drop:hover {
    transform: scale(1.1,1.1);
}
.third-sec .cart-icon {
    position: relative;
}
.third-sec .cart-icon::after {
    content: "2";
    width: 20px;
    height: 20px;
    font-size: 14px;
    background: #999794;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    transition: 0.4s;
    left: 13px;
    top: -3px;
}
.third-sec .cart-icon:hover::after {
    top: -7px;
}
/* part-3 in header */
.section-3-h {
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: black;
}
.section-3-h a {
    margin-left: 8px;
    color: #999794;
    font-weight: bold;
    border-bottom: 2px solid #999794;
}
.section-3-h a:hover {
    letter-spacing: 1.5px;
}
/* End Header */
/* Start Landing - Section 1 */
.landing {
    background-color: #f2f0f1;
    height: 92vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #16161a70;
}
.landing .left,
.landing .right {
    flex-basis: 50%;
    position: relative;
}
.landing .right img {
    width: 600px;
    margin-top: -65px;
}
.landing .left {
    padding: 100px 0px 0px 160px;
}
.landing .left .main {
    font-family: 'Clicker Script', cursive;
    cursor: pointer;
    color: #706d6d;
    font-weight: bold;
    font-size: 115px;
}
.landing .left .main:hover {
    color: #292621;
}
.landing .left .land-h1 {
    font-size: 40px;
    margin: 10px 0px 10px;
}
.landing .left .text {
    font-size: 14px;
    margin-bottom: 20px;
    color: #292621;
}
.landing .btn-h {
    background: #2b2721;
    color: #fff;
    font-size: 20px;
    padding: 12px 25px;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 6px 6px 12px rgba(0,0,0,0.5);
}
.landing .btn-h:hover {
    color: #2b2721;
    background: #fff;
    border: 1px solid #2b2721;
}
/* End Landing */
/* Start Section-2 */
.types {
    display: flex;
    justify-content: space-between;
}
.types > div {
    width: 350px;
    height: 350px;
    margin: 120px 0;
    overflow: hidden;
    position: relative;
}
.types > div::after {
    content: "";
    width: 100%;
    height: 30%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to top,#000000,#00000004);
    border-radius: 10px;
    position: absolute;
    z-index: 1;
}
.types .sec-types img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 1s;
}
.types .sec-types:hover img {
    transform: scale(1.1,1.1);
    border-radius: 10px;
}
.types .sec-types .type-pro {
    width: 100%;
    height: 30%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    transform: translateY(45px);
    border-radius: 10px;
    transition: 1s;
}
.types .sec-types:hover .type-pro {
    transform: translateY(0px);
    border-radius: 10px;
}
.types .sec-types .type-pro h2 {
    color: #fff;
    margin: 15px 0;
}
.types .sec-types .type-pro a {
    color: #999794;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 1px;
    border-bottom: 3px solid #999794;
}
.types .sec-types .type-pro a:hover {
    letter-spacing: 1.5px;
}
/* End Section-2 */
/* Start Section-3 */
.trends-sec {
    margin-top: 50px;
    position: relative;
}
.trends-sec .trend {
    height: 50px;
    border-bottom: 1px solid #16161a70;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.trends-sec .trend h2 {
    font-size: 35px;
    color:#292621;
    font-weight: bold;
}
.trends-sec .trend a {
    height: 50px;
    margin-left: 25px;
    color: #292621;
    font-size: 20px;
}
.trends-sec .trend .selected-type {
    color: #999794;
    border-bottom: 5px solid #999794;
}
.trends-sec .products-trending {
    display: flex;
    justify-content: space-between;
}
.trends-sec .products-trending div {
    width: 24%;
    height: 500px;
    margin-top: 50px;
    text-align: center;
    position: relative;
}
.trends-sec .products-trending div img {
    width: 100%;
    height: 75%;
    border-radius: 25px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
.trends-sec .products-trending div a {
    padding: 8px 0;
    font-size: 22px;
    color: #2b2721;
}
.trends-sec .products-trending div a:hover {
    color: #999794;
}
.trends-sec .products-trending div p {
    font-size: 18px;
    font-weight: bold;
    color: #292621;
    opacity: 0.7;
}
.trends-sec .products-trending div:hover p {
    opacity: 1;
}
.trends-sec .products-trending div:hover p span {
    opacity: 0.7;
}
.trends-sec .products-trending div p span {
    text-decoration: line-through;
    margin-left: 12px;
}
.trends-sec .products-trending div .icons-t {
    width: 60%;
    height: 10%;
    left: 20%;
    bottom: 30%;
    display: flex;
    flex-direction: row;
    position: absolute;
    z-index: 10000;
}
.trends-sec .products-trending div .icons-t a {
    color: #292621;
    width: calc(100% / 3);
    background: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50%);
    transition: 1.5s;
}
.trends-sec .products-trending div:hover .icons-t a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.trends-sec .products-trending div .icons-t a:hover {
    background: #292621;
    color: #fff;
}
.trends-sec .products-trending > .one-trend::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/woman-alt-1.jpg);
    border-radius: 25px;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}
.trends-sec .products-trending > .two-trend::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/woman-alt-2.jpg);
    border-radius: 20px;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}
.trends-sec .products-trending > .three-trend::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/woman-alt-3.jpg);
    border-radius: 20px;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}
.trends-sec .products-trending > .four-trend::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/woman-alt-4.jpg);
    border-radius: 20px;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}
.trends-sec .products-trending > div:hover::after {
    transform: rotateY(0deg);
}
.trends-sec > a {
    position: absolute;
    font-size: 30px;
    opacity: 0.7;
    color: #16161a;
}
.trends-sec > a:hover {
    opacity: 1;
}
.trends-sec .left-arrow {
    top: 50%;
    left: -35px;
}
.trends-sec .right-arrow {
    top: 50%;
    right: -35px;
}
/* End Section-3 */
/* Start Section-4 */
.Customer-Test {
    width: 100%;
    height: 400px;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #f2f0f1;
    position: relative;
    box-shadow: 1px 1px 2px #00000070,-1px -1px 2px #00000070;
}
.Customer-Test > h2 {
    font-size: 35px;
    font-weight: bold;
    color: #292621;
}
.Customer-Test > p {
    width: 50%;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    color: #999794;
}
.Customer-Test > div {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.Customer-Test > div img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.5);
}
.Customer-Test .name-n4 {
    margin-left: 20px;
}
.Customer-Test .name-n4 h4 {
    font-size: 18px;
    color: #292621;
    padding-bottom: 5px;
}
.Customer-Test .name-n4 p {
    color: #999794;
}
.Customer-Test > a {
    position: absolute;
    font-size: 35px;
    opacity: 0.7;
    color: #292621;
}
.Customer-Test > a:hover {
    opacity: 1;
}
.Customer-Test .left-arrow {
    top: 50%;
    left: 120px;
}
.Customer-Test .right-arrow {
    top: 50%;
    right: 120px;
}
/* End Section-4 */
/* Start Section-5 */
.like-sec5 .may-like-5 {
    justify-content: center;
    border-bottom: none;
}
.like-sec5 .products-trending > div {
    overflow: hidden;
}
.like-sec5 .products-trending > .one-like::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/like-alt-1.jpg);
    border-radius: 25px;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}
.like-sec5 .products-trending > .two-like::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/like-alt-2.jpg);
    border-radius: 25px;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}
.like-sec5 .products-trending > .three-like::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/like-alt-3.jpg);
    border-radius: 25px;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}
.like-sec5 .products-trending > .four-like::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/like-alt-4.jpg);
    border-radius: 25px;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}
.trends-sec5 .products-trending > div:hover::after {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
/* End Section-5 */
/* Start Section-6 */
.section-n6 {
    width: 100%;
    min-height: 600px;
    margin-top: 70px;
    background-color: #f2f0f1;
    box-shadow: 1px 1px 2px #00000070,-1px -1px 2px #00000070;
}
.section-n6 h2 {
    text-align: center;
    padding: 40px 0;
    font-size: 35px;
    font-weight: bold;
    color: #292621;
}
.latest-sec6 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.latest-sec6 > div {
    width: 30%;
    height: 100%;
    perspective: 800px;
}
.latest-sec6 > div img {
    width: 100%;
    height: 380px;
    box-shadow: 6px 6px 12px rgba(0,0,0,0.5);
}
.latest-sec6 > div img:hover {
    transform: translateZ(30px);
}
.latest-sec6 > div span {
    display: block;
    color: #999794;
    padding-top: 15px;
}
.latest-sec6 > div a {
    color: #2b2721;
    opacity: 0.7;
    font-size: 22px;
    margin: 15px 0;
}
.latest-sec6 > div:hover a:not(.read-more-s) {
    transform: translateZ(30px);
    opacity: 1;
}
.latest-sec6 > div .read-more-s {
    font-size: 20px;
    text-decoration: underline;
    margin-bottom: 50px;
}
.latest-sec6 > div .read-more-s:hover {
    transform: scale(1.1,1.1);
}
.latest-sec6 > div p {
    color: #999794;
    font-size: 16px;
}
/* End Section-6 */
/* Start Section-7 */
.delivery-sec7 {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}
.delivery-sec7 div > div {
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: relative;
}
.delivery-sec7 div > div i {
    font-size: 45px;
    margin-bottom: 40px;
    color: #999794;
    width: 100%;
}
.delivery-sec7 div div #icon-d {
    position: absolute;
    top: 0;
    left: 0;
    color: #292621;
    transform: translateY(65px);
}
.delivery-sec7 div:hover > div i{
    transform: translateY(-50px);
}
.delivery-sec7 div:hover div #icon-d {
    transform: translateY(0);
}
.delivery-sec7 h3 {
    color: #2b2721;
}
.delivery-sec7 p {
    margin-top: 10px;
    color: #999794;
}
/* End Section-7 */
/* Start Footer */
.footer-sec {
    width: 100%;
    min-height: 550px;
    margin-top: 70px;
    background: black;
}
.footer-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.footer-8 > div {
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-8 .sec-1-f {
    width: 100%;
    min-height: 120px;
    align-items: center;
    border-bottom: 1px solid #999794;
}
.footer-8 .sec-1-f div p {
    padding-top: 12px;
}
.footer-8 .sec-1-f div input {
    width: 400px;
    height: 50px;
    font-size: 16px;
    border: 1px solid #999794;
    border-radius: 20px;
    padding-left: 15px;
}
.footer-8 .sec-1-f div .subscribe {
    width: 150px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    margin-left: 14px;
    background: #999794;
    border-radius: 20px;
    line-height: 50px;
    text-align: center;
}
.footer-8 .sec-1-f div a {
    color: rgb(103, 127, 139);
    font-size: 25px;
    margin-left: 12px;
}
.footer-8 .sec-1-f div a:hover {
    color: #fff;
    transform: scale(1.1);
}
.footer-8 .sec-2-f {
    width: 100%;
    height: 300px;
    margin-top: 50px;
    border-bottom: 1px solid #999794;
}
.footer-8 .sec-2-f a {
    display: block;
    color: rgb(103, 127, 139);
    margin-bottom: 10px;
    transition: 0.5s;
}
.footer-8 .sec-2-f a:not(.logo):hover {
    text-decoration: underline;
    color: #fff;
    transform: scalex(1.1);
}
.footer-8 .sec-2-f a.logo:hover {
    text-decoration: underline;
    transform: scalex(1.1);
}
.footer-8 .sec-2-f h3 {
    margin-bottom: 20px;
}
.footer-8 .sec-3-f {
    width: 100%;
    height: 50px;
    justify-content: center;

}
.footer-8 .sec-3-f p {
    color: #706d6d;
}
.footer-8 .sec-3-f p span,.footer-site .sec-3-f p a {
    color: red;
    padding: 0 3px;
}
.footer-8 .sec-3-f p a {
    color: #999794;
}
.footer-8 .sec-3-f p a:hover {
    text-decoration: underline;
    letter-spacing: 1.5px;
}
.footer-8 .sec-3-f p span i {
    animation-name: change;
    animation-duration: 0.6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes change {
    0% {
        color: black;
        transform: scale(1);
    }
    100% {
        color: red;
        transform: scale(1.5);
    }
}
/* End Footer */
/* End خالص الحمدلله */