body{
    background-image: url(../pic/bg.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
@font-face {
    font-family: fontp;
    src: url('../fonts/Sans\ a4fran3.eot');
    src:url('../fonts/Sans\ a4fran3.eot') format('Sans-opentype'),
        url('../fonts/Sans\ a4fran3.woff'),
        url('../fonts/Sans\ a4fran3.ttf') format('truetype')
}
#main{
    width: 960px;
    height: auto;
    margin: auto;
}
#head{
    width: 960px;
    height: 90px;
    margin: auto ;
    padding: 5px;
    background-color: rgb(134, 86, 179);
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
}
#menu-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex: 1;
}
#pic{
    width: 90px;
    height: 90px;
    background-color: rgb(211, 192, 221);
    border-radius: 45px;
    background-image: url(../pic/logo.webp);
    background-size: 90px 90px ;
    
}
#basket{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
#basket img{
    width: 48px;
    height: 48px;
    padding: 30px;
}
.menu{
    font-family:fontp;
    font-size: 15px;
    text-decoration: none; 
    color: rgb(255, 223, 255);
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.5s ease, color 0.5s ease;
}
.menu:hover{
    background-color: rgb(255, 223, 255);
    color: rgb(134, 86, 179);
}
#login-form{
    width: 350px;
    margin: 60px auto;
    padding: 30px;
    background-color: rgba(227, 191, 255, 0.724);
    border-radius: 20px;
    border: 1px solid #d297ff;
    box-sizing: border-box;
    direction: rtl;
    text-align: center;
}
#login-form h2{
    font-family: fontp;
    color: rgb(134, 86, 179);
    margin: 0 0 20px 0;
}
#login-form form{
    display: flex;
    flex-direction: column;
}
#login-form label{
    font-family: fontp;
    font-size: 14px;
    color: rgb(134, 86, 179);
    text-align: right;
    margin-bottom: 5px;
}
#login-form input{
    font-family: fontp;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d297ff;
    border-radius: 10px;
    background-color: rgb(255, 223, 255);
    outline: none;
    direction: rtl;
}
#login-form input:focus{
    border: 1px solid #4d006b;
}
#login-form button{
    font-family: fontp;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: rgb(134, 86, 179);
    color: rgb(255, 223, 255);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#login-form button:hover{
    background-color: rgb(77, 0, 107);
}
#signup-link{
    font-family: fontp;
    font-size: 14px;
    color: rgb(134, 86, 179);
    margin-top: 15px;
}
#signup-link a{
    color: rgb(54, 0, 75);
    text-decoration: none;
}
#signup-link a:hover{
    text-decoration: underline;
}
#foot{
    width: 960px;
    margin: auto;
    padding: 30px 20px;
    background-color: rgb(134, 86, 179);
    border-radius: 25px 25px 0 0;
    box-sizing: border-box;
    direction: rtl;
}
#foot-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.foot-col{
    flex: 1;
    width: 200px;
}
.foot-col h4{
    font-family: fontp;
    font-size: 17px;
    color: rgb(255, 223, 255);
    margin: 0 0 12px 0;
}
.foot-col p{
    display: block;
    font-family: fontp;
    font-size: 15px;
    color: rgb(255, 223, 255);
    margin-bottom: 8px;
}
.foot-col a{
    display: block;
    font-family: fontp;
    font-size: 15px;
    text-decoration: none;
    color: rgb(255, 223, 255);
    margin-bottom: 8px;
}
.foot-col a:hover{
    text-decoration: underline;
}
#foot-bottom{
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgb(211, 192, 221);
    text-align: center;
    font-family: fontp;
    font-size: 13px;
    color: rgb(255, 223, 255);
}