*{
    padding: 0px;
    margin: 0px;
}
body{
     font-family: "Poppins", sans-serif;
     background-color: darkseagreen;
}

.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;
    background-color: #f2f4f7;
    
}
.navbar img{
    height: 75px;
    width: auto;    
}

.navbar-links{
    display: flex;
    column-gap: 20px;
}
.navbar-link a{
    text-decoration: none;
    color: #1d232c;
}
.navbar-link a:hover{
    text-decoration: underline;
    color: darkseagreen;
}

.navbar-menu-toggle{
    display: none;
}


/*side-navbar*/
.side-navbar{
    background-color: #1d232c;
    position: fixed;
    top: 0;
    left: -60%;
    height: 100%;
    width: 50%;
    padding: 20px;
    color: white;
    transition: 2s;

}  
.side-navbar-link{
    margin-bottom: 30px;
          
}
.side-navbar-link a{
    text-decoration: none;
    color: white;
}

.side-navbar-link a:hover{
    text-decoration: underline;
}


.header{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}
.header-button{
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 10px;
    background-color: #1d232c;
    color: white
}

.service{
    padding: 20px;
}

.service-container-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-container-2{
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 10px;
}

.service-container-2 div{
            background-color: #f2f4f7;
            border-radius: 5px;
}

.new-arrival{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.new-arrival-container{
    position: relative;
    flex-basis: 20%;
    margin: 5px;


}
.new-arrival button{
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 10px;
    color: #1d232c;
    position: absolute;
    top: 50%;
    left: 18%;
    border-radius: 10px;
    border: none;
}
.News-letter{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 20px;
}
.News-letter input{
    padding: 10px;
    width: 80vw;
    margin-bottom: 10px;
    border: solid black 3px;
}
.News-letter button{
    margin-top: 10px;
    color: #f2f4f7;
    background-color: #1d232c;
    border-radius: 10px;
    padding: 10px;
}

.footer{
    margin-top: 20px;
    padding: 40px;
    background-color: #1d232c;
    color: #f2f4f7;
}


.products{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
      
}

.products-box{
    text-align: center;
    flex-basis: 20%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.products-box img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;

}
.products-box img:hover{
    transform: scale(1.1);
}



.product-section{
    margin-top: 20px;
}

.product-rating{
    color: gold;
    margin: 8px 0;
}

.product-rating span{
    color: gray;
    margin-left: 5px;
}

.product p{
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.product-price{
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;

}

.old-price{
    color: gray;
    text-decoration: line-through;
    font-size: 16px;
    margin-left: 8px;
}

.add-cart-btn{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #020225;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.add-cart-btn:hover{
    transform: scale(1.03);
}

.product-search input{
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background-color: transparent;
}

.product-search input:focus{
    outline: none;
}

.product-search{
    width: 80%;
    border: 2px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin: 40px auto;
    border-radius: 30px;
}

.product-search input{
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.product-search i{
    cursor: pointer;
}

.contact{
    width: 50%;
    margin: 30px auto;
    text-align: center;
}

.contact form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea{
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact button{
    padding: 12px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover{
    background-color: darkgreen;
}

/* LOGIN PAGE */

.login-container{
    width: 70%;
    margin: 50px auto;
    display: flex;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.login-left{
    width: 40%;
    background: #2874f0;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-left h1{
    font-size: 32px;
}

.login-left p{
    font-size: 18px;
}

.login-left img{
    width: 220px;
    margin-top: 50px;
    align-self: center;
}

.login-right{
    width: 60%;
    padding: 50px;
    display: flex;
    align-items: center;
}

.login-right form{
    width: 100%;
}

.login-right input{
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 16px;
}

.login-right button{
    width: 100%;
    padding: 12px;
    background: #fb641b;
    color: white;
    border: none;
    font-size: 17px;
    cursor: pointer;
}

.login-right button:hover{
    background: #e95a15;
}

.login-text{
    margin-top: 25px;
    text-align: center;
}

.login-text a{
    text-decoration: none;
    color: #2874f0;
    font-weight: 600;
}

@media(max-width:768px){

    .login-container{
        flex-direction: column;
        width: 95%;
    }

    .login-left,
    .login-right{
        width: 100%;
    }

    .login-left img{
        width: 150px;
    }
}

.steps{
    display:flex;
    justify-content:center;
    gap:30px;
    margin:30px 0;
}

.steps span{
    padding:12px 25px;
    border-radius:50px;
    background:#ddd;
}

.steps .active{
    background:#2874f0;
    color:white;
}


/* Common Card */

.checkout-card{
    width:80%;
    max-width:800px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

/* Heading */

.checkout-card h2{
    margin-bottom:20px;
}

/* Form */

.checkout-card input,
.checkout-card textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:8px;
    box-sizing:border-box;
}

.checkout-card textarea{
    resize:none;
    height:100px;
}

/* Button */

.btn{
    background:#fb641b;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.btn:hover{
    background:#e85d14;
}

/* Product Summary */

.product-box{
    display:flex;
    align-items:center;
    gap:20px;
}

.product-box img{
    border-radius:10px;
}

.price{
    color:green;
    font-size:22px;
    font-weight:bold;
}

/* Payment */

.payment-option{
    display:block;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:15px;
    cursor:pointer;
}

@media screen and (max-width:700px){
    .navbar-menu-toggle{
        display: block ;
    }
    .navbar-links{
        display: none;
    }
.service-container-1{
    display: none;
}
.service-container-2{
    flex-direction: column;
}
}