* {
    padding: 0;
    margin: 0
}

body {
    font-family: "Poppins", sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.navbar-links {
    display: flex;
    column-gap: 20px
}

.navbar-links a {
    text-decoration: none;
    color: greenyellow;
}

.navbar-links a:hover {
    text-decoration: underline;
}

.nav-menu {
    display: none;
}

.sidenav {
    top: 0;
    height: 100%;
    width: 50%;
    background-color: blueviolet;
    color: white;
    position: fixed;
    left: -60%;
    padding: 20px;

    transition: 1.5s;
}

.side-navbar-link {

    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.side-navbar-links a {
    text-decoration: none;
    color: white;
}


.header {
    display: flex;
    justify-content: center;
    /* align-items: centre; */
    gap: 50px;
    padding: 50px;
    /* text-align: center; */
}

.header-button {
    padding: 10px;
    background-color: greenyellow;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.service-container-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-container-2 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin: 20px;
    padding: 10px;

}

.service-container-2 div {
    background-color: greenyellow;
    padding: 10px;
    border-radius: 10px;
}

.newarrival {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.newarrival-container {
    position: relative;
    flex-basis: 20%;

    z-index: 0;
}

.shop {
    padding: 10px;
    background-color: greenyellow;
    color: black;
    position: absolute;
    top: 90px;
    left: 60px;
    border: none;
    border-radius: 10px;
    z-index: 1;
}

.img {
    background-color: black;
    opacity: 70%;
    border-radius: 5px;

}
.initial-scroll-animate{
   
    transition: 5s;
 }

 .reveal-scroll-animate{
    opacity: 0;
 }

.news {
    display: flex;
    align-items: center;
    flex-direction: column;

}

.news input {
    width: 70%;
    border: solid black 2px;
    height: 30px;
}

.news button {
    margin-top: 10px;
    padding: 10px;
    background-color: greenyellow;
    color: black;
    border: none;
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 10px;
    gap: 10px;

}

.footer {
    height: 125px;
    background-color: greenyellow;
    padding: 20px;
    margin-top: 20px;
}

.footer-container {
    padding: 10px;
    margin-top: 10px;
}


.product-section {
    margin-top: 20px;
}

.product-search {
    width: 80%;
    border: solid black 2px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    
}

.product-search input {
    border: none;
    width: 100%;
    background-color: transparent;
    
}

.product-search input:focus {
    outline: none;
}

.products {
    display: flex;
    padding: 20px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product-container {
    text-align: center;
    flex-basis: 20%;
}

.product-container img {
    border-radius: 10px;
}




@media screen and (max-width:600px) {
    .nav-menu {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .header-img {
        display: none;
    }

    .service-container-1 {
        display: none;
    }

    .service-container-2 {
        flex-direction: column;
    }

}