*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Jost', sans-serif;
    list-style: none;
    text-decoration: none;
}

header{
    background: #111;
    position: fixed;
    width: 100%;
    height: 4rem;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    border: 1px solid #ae8241
}

.logo-header{
    color: white;
}



.navmenu{
    display: flex;
}
.navmenu a{
    color: #fff5f5;
    font-size: 16px;
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 400;
    transition: all .42s ease;
}
.navmenu a:hover{
    color: #e6e21e;
}
.nav-icon{
    display: flex;
    align-items: center;
}
.nav-icon i{
    margin-right: 20px;
    color: #fff6f6;
    font-size: 25px;
    font-weight: 400;
    transition: all .42s ease;
}
.nav-icon i:hover{
    transform: scale(1.1);
    color: #EE1C47;
}
#menu-icon{
    font-size: 35px;
    color: #ffffff;
    z-index: 10001;
    cursor: pointer;
}
section{
    padding: 5% 10%;
}
.main-home{
    width: 100%;
    height: 100vh;
    background-image: url(./image/1-iphone-7.jpg);
    background-position: center;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    border: 1px solid #ae8241
}

.main-text h1{
    color: #ae8241;
    font-size: 65px;
    text-transform: capitalize;
    line-height: 1.1;
    font-weight: 600;
    margin: 6px 0 10px;
}
.main-text p{
    color: #ffffff;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
}
.main-btn{
    display: inline-block;
    background:#ae8241 ;
    color: #edfff1;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    border: 2px solid #ae8241;
    padding: 12px 25px;
    transition: all .42s ease;
    border-radius: 5px;
}
.main-btn:hover{
    background-color: #111;
    color: #efefef;
}
.main-btn i{
    vertical-align: middle;
}
.down-arrow{
    position: absolute;
    top: 85%;
    right: 11%;
}
.down i{
    font-size: 30px;
    color: #ae8241;
    border: 2px solid #ae8241;
    border-radius: 50px;
    padding: 12px 12px;
}
.down i:hover{
    background-color: #ae8241;
    color: #fffefe;
    transition: all .42s ease;
}

/*header fixo*/
header.sticky{
    background: #ae8241;
    padding: 20px 10%;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

/* trending-section-css */

.trending-product {
    background: #111;
}
.center-text h2{
    color: #f8f8f8;
    font-size: 28px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
    border: solid 1px #ae8241;
    border-radius: 5px;
    background: #ae8241 ;
}
.center-text span{
    color: #ae8241;
}
.products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
    gap: 2rem;
}
.row{
    position: relative;
    transition: all .40s;
}
.row img{
    width: 100%;
    height: auto;
    transition: all .40s;
}
.row img:hover{
    transform: scale(0.9);
}
.product-text h5{
    position: absolute;
    top: 13px;
    left: 13px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #d78812;
    padding: 3px 10px;
    border-radius: 2px;
}

.ratting i{
    color: #FF8C00;
    font-size: 18px;
}



.client-reviews{
    background-color: #111;
    border: 1px solid #ba9b14;
}
.reviews{
    text-align: center;
}
.reviews h3{
    color: #d78812;
    font-size: 25px;
    text-transform: capitalize;
    text-align: center;
    font-weight: 700;
}
.reviews img{
    width: 100px;
    height: auto;
    border-radius: 50px;
    margin: 10px 0;
}
.reviews p{
    color: #c0b7b7;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}
.reviews h2{
    font-size: 22px;
    color: #d78812;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 2px;
}

/* update-section-css */

.Update-news{
    background: #111;
}

.up-center-text h2{
    text-align: center;
    color: #d78812;
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}
.cart img{
    width: 380px;
    height: auto;
    border-radius: 5px;
    
}
.update-cart{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, auto));
    
}
.cart h5{
    color: #c0b7b7;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
}
.cart h4{
    color: #ba9b14;
    font-size: 18px;
    font-weight: 600;
}
.cart p{
    color: #c0b7b7;
    font-size: 15px;
    max-width: 380px;
    line-height: 25px;
    margin-bottom: 12px;
}
.cart h6{
    color: #151515;
    font-size: 14px;
    font-weight: 500;
}

/* contact-section */
.contact{
    background-color: #111;
}
.contact-info{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, auto));
    gap: 3rem;
}
.first-info img{
    width: 140px;
    height: auto;
}
.contact-info h4{
    color: #c0b7b7;;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.contact-info p,a{
    color: #ffffff;;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.5;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .42s;
}

.contact-info a:hover{
    color: green;
}

.contact-info p:hover{
    color: #d78812;
}
.social-icon i{
    color: #ffffff;;
    margin-right: 10px;
    font-size: 20px;
    transition: all .42s;
}
.social-icon i:hover{
    transform: scale(1.3);
}
.end-text{
    background-color: #000000;
    text-align: center;
    padding: 20px;
}
.end-text p{
    color: #ffffff;
    
}


.WhatsApp-button {
    position:fixed; bottom: 20px; right: 20px; z-index: 9000;
    border-radius: 100%;
  }

/* Responsive-css */
@media(max-width:375px){
    .main-home{
        width: 124%;
        height: 80vh;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .main-btn{
        display: none;
    }

    section{
        padding: 5% 10%;
        width: 124%;
    }

    .end-text{
        width: 124%;
    }

    .cart img {
        width: 360px;
    }

}

@media(max-width:890px){
    header{
        padding: 20px 3%;
        transition: .4s;
    }

   
}
@media(max-width:630px){
    .main-text h1{
        font-size: 50px;
        transition: .4s;
    }
    .main-text p{
        font-size: 18px;
        transition: .4s;
    }
    
   
}

@media(max-width:750px){
    .navmenu{
        position: absolute;
        top: 100%;
        right:-100%;
        width: 300px;
        height: 130vh;
        background: #ae8241;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 120px 30px;
        transition: all .42s;
    }
    .navmenu a{
        display: block;
        margin: 18px 0;
    }
    .navmenu.open{
        right: 0;
    }

    .update-cart{
        margin-left: -1rem;
    }
}
@media (min-width: 1400px) {
    .update-cart {
       gap: 0.5rem;
     }
   }

