* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.navlinks{
    display: flex;
    column-gap: 20px;
}

.navlink a{
    text-decoration: none;
    color: black;
}

.navlink a:hover{
    text-decoration: underline;
    color: black;
}

.navbartoggle{
    display: none;
}


.sidenavbar{
    background-color: black;
    position: fixed;
    width: 40%;
    height: 100%;
    top: 0;
    left: -60%;
    padding: 20px;
    transition: 1s;
}

.xmark{
    color: white;
    text-align: right;
}

.sidenavlink {
    margin-bottom: 30px;
}

.sidenavbar a{
    color: white;
    text-decoration: none;
}

.sidenavbar a:hover{
    color: white;
    text-decoration: underline;
}

.headerimage{
    height: 300px;
    display: flex;
}
.header{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}
.headertext{
    margin-top: 10px;
}
.shopbutton{
    padding: 10px 20px;
    background-color: black;
    color: white;
    margin-top: 10px;
    border-radius: 15px;
}

.service{
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.service-2{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.servicebox{
    background-color: #d0d0d0;
    padding: 20px;
    border-radius: 10px;
}
.newarrival{
    display: flex;
    flex-wrap: wrap;
    flex-basis: 20%;
    justify-content: space-around;
}

.newarrival-container{
    position: relative;
}
.newarrival-container img{
    height: 200px;
}

.newarrival-container button{
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    position: absolute;
    top: 60%;
    left: 20%
}


.news{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    margin-top: 15px;
}

.news input{
    width: 80%;
    border-radius: 10px;
    border: 2px solid black;
    padding: 10px;
}

.news button{
    padding: 10px 20px;
    background-color: black;
    color: white;
    border-radius: 10px;
}

.footer{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: rgb(58, 58, 58);
    color: white;
    margin-top: 15px;
}
.footericons{
    gap: 10px;
    display: flex;
}

.search{
    width: 80%;
    border: 2px solid black;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    margin-top: 20px;
}

.search input{
    border: none;
    width: 100%;
}
.search input:focus{
    outline: none;
}

.products{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-basis: 40%;
    padding: 20px;
    gap: 10px;
}

.productsbox{
    text-align: center;
    flex-basis: 20%;

}
.productsbox img{
    height: 200px;
    box-sizing: border-box;
    transition: border 0.2s ease-in-out;
}

.productsbox img:hover{
    border: 2px solid black;
}

.contactbox{
    background-color: rgb(58, 58, 58);
    color: white;
    width: 80%;
    height: 80%;
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    height: 80%;
    border-radius: 15px;
    gap: 20px;
    margin-top: 30px;
}

.contactbox div{
    width: 80%;

}

.contactbox input{
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contactbox textarea{
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 70px;
}

.contactbox p{
    margin-bottom: 20px;
}


.contactbox button{
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
}

@media screen and (max-width:700px) {
    .navbartoggle{
        display: block;
    }
    .navlink{
        display: none;
    }
    .headerimage{
        display: none;
    }
    .service p{
        display: none;
    }
    .service-2{
        flex-direction: column;
    }
}

