@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
}
body{
    font-family: 'Poppins', sans-serif;
}
.froend-page{
    width: 100vw;
    height: 100vh;
    background-image: url('img/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.let-go-btn{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 72px;
    width: 220px;
    height: 72px;
    background-color:#FF8D74;
    border-radius: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.let-go-btn::after{
    content: '';
    width: 25px;
    height: 25px;
    background-image: url('img/arrow.png');
    margin-left: 16px;
}
.let-go-btn a{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.container{
    width: 100%;
    float: left;
}
.header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 24px 0px;
}
.profile{
    display: flex;
    column-gap: 15px;
}
.profile-name h2{
    font-weight: 400;
    font-size: 16px;
}
.profile-name h3{
    font-weight: 600;
    font-size: 18px;
}
.notification{
    width: 40px;
    height: 40px;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.search-section{
    width: 100%;
    height: 345px;
    background-image: url('images/bg-search.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 0px 24px;
    position: relative;
   
}
.search-box{
    width: 80%;
    height: 60px;
    position:absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
}
.search-box input{
    width: 100%;
    height: 100%;
    padding-left: 20px;
    border-radius: 13px;
    border: 1px solid #000;
    outline: none;
}
.search-btn{
    width: 40px;
    height: 40px;
    background-color: #FF8D74;
    border-radius: 15px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    background-image: url('images/Search.png');
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;

}
.Popular-Categories{
    width: 100%;
    padding: 0px 24px;
}
.popular-heading h4{
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 14px;
}
.popular-cat-section{
    display: flex;
    align-items: center;
    gap: 20px;
}
.cat-section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 14px;
    font-weight: 400;
    font-size: 16px;
    color: #00000056;
}
.Recommended{
    width: 100%;
    padding: 20px;
    overflow-x: hidden;

}
.Recommended-title{
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 14px;
}
.Recommended-section{
    width: 100vw;
    display: flex;
    align-items: center;
    column-gap: 30px;
    row-gap: 30px;
    flex-direction: column;

}
.Recommended-section .Rec-sec{
    width: 100%;
}
.Recommended-section .Rec-sec img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rec-title{
    text-align: center;
    font-weight: 500;
    font-size: 20px;
}
.fixed-menu{
    width: 100%;
    height: 72px;
    background-color: #fff;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9;
}
.menu-section{
    width: 100%;
    height: 100%;
}
.menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;

}
.close{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FF8D74;
    display: flex;
    align-items: center;
    justify-content: center;

}
