/* Default Styles */
    @import url('https://fonts.googleapis.com/css2?family=Lobster&family=Open+Sans&family=Poppins&family=Work+Sans:ital,wght@1,700&display=swap');
    *{
        margin: 0;
        font-family: 'Poppins', sans-serif
}
/* Header Start */
    header{
        margin: 70px 120px;
}
/* Nav Start */
    nav{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 100px;
    }
    .nav-title{
        font-size: 24px;
        color: #3A3A3A;
    }
    .nav-link a{
        font-weight: 600;
        line-height: 50px;
        font-size: 16px;
        color: #3A3A3A;
        text-decoration: none;
        margin-left: 34px;
    }
    .nav-icon{
        font-size: 24px;
    }
/* Nav End */
/* Banner Start */
    .banner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 100px;
    }
    .banner-info{
        width: 55%;
    }
    .banner-title{
        font-size: 52px;
        color: #3A3A3A;
    }
    .banner-description{
        font-weight: 600;
        color: #3A3A3A;
        margin: 16px 0;
    }
    .banner-btn{
        color: white;
        background: #E02C6D;
        padding: 10px 24px;
        border: 0;
        border-radius: 41px;
        font-weight: 700;
        outline: none;
        gap: 8px;
        display: flex;
        align-items: center;
    }
    .banner-img{
        width: 45%;
    }
    .banner-img img{
        width: 100%;
        background-image: url('../images/Circle\ design.svg');
        background-repeat: no-repeat;
        background-size: contain;
    }
/* Banner End */
/* Header End */
/* Main Start */
main{
    margin: 0 120px;
}
    /* Logo Start */
    .logo{
        margin-bottom: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid lightgray;
        border-top: 1px solid lightgray;
        padding: 35px 60px;
        gap: 60px;
    }
/* Logo End */
    /* Popular Section Start */
    .popular-section-title{
        text-align: center;
        font-weight: 600;
        font-size: 28px;
        color: #3A3A3A;
        margin-bottom: 30px;
    }
    .popular-collection{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
    }
    .collection{
        padding: 15px;
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    }
    .popular-name{
        font-weight: 500;
        line-height: 40px;
        font-size: 28px;
        color: #18191F;
        margin-top: 16px;
    }
    .popular-price{
        color: rgba(0, 0, 0, 0.87);
        font-size: 24px;
        line-height: 150%;
        color: rgba(0, 0, 0, 0.87);
        font-weight: 400;
        margin: 10px 0;
    }
    .popular-ratings{
        font-size: 14px;
        font-weight: 700;
        color: #5E6366;
        margin-bottom: 5px;
        display: flex;
        gap: 15px;
    }
    .popular-description{
        color: #787885;
        font-weight: 700;
        font-size: 14px;
        line-height: 143%;
    }
    .collection img{
        width: 100%;
    }
    .rating{
        color: #FB8200;
    }
    #see-more{
        margin: 50px 0 100px;
    }
    #see-more a{
        text-decoration: none;
        color: rgba(224, 44, 109, 0.87);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: end;
    }
    /* Popular Section End */
    /* Feature Section Start */
    .feature{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 95px;
        margin-bottom: 100px;
    }
    .feature-info{
        width: 60%;
    }
    .feature-title{
        font-size: 38px;
        color: #3A3A3A;
    }
    .feature-description{
        font-weight: 700;
        color: #6C6C6C;
        margin: 16px 0;
    }
    .feature-btn{
        color: white;
        background: #E02C6D;
        padding: 10px 24px;
        border: 0;
        font-weight: 700;
        outline: none;
        gap: 8px;
        display: flex;
        align-items: center;
    }
    .feature-img{
        width: 40%;
    }
    .feature-img img{
        width: 100%;
    }
    /* Feature Section End */
/* Main End */
/* Footer Start */
footer{
    text-align: center;
    color: white;
    background: #0A0826;
    padding: 50px 0;
}
.footer-title{
    font-size: 24px;
}
.footer-description{
    font-weight: 700;
    font-size: 14px;
    color: #D9DBE1;
    margin: 17px 0;
}
.footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.footer-links a{
    text-decoration: none;
    color: white;
    background-color: hsla(0, 0%, 100%, 0.1);
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}
/* Footer End */