@font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat/Montserrat-VariableFont_wght.ttf');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Dancing Script';
    src: url('./font/Dancing_Script/DancingScript-VariableFont_wght.ttf');
    font-style: normal;
    font-weight: normal;
}
:root{
    --primary: #fffcfc;
    --secondary: #000000;
    --tertary: #ee7e8f;
    --primary-off: #fffcfc9a;
    --secondary-off: #0000009a;
    --tertary-off: #ee7e8f9a;
    --transition: all 0.3s ease-in-out;
}
svg{
    width: 18px;
}
img{
    width: 60px;
}
a{
    color: currentColor;
}
*{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    text-decoration: none;
    color: currentColor;
    outline: none;
}
body{
    height: 100vh;
    width: 100%;
    font-size: 13px;
}
body header{
    width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: var(--transition);
}
body header nav ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
body header nav ul li{
    margin: 0 30px;
    transition: var(--transition);
    cursor: pointer;
}
body header nav ul li:hover{
    color: var(--secondary-off);
}
body header nav ul li:first-child{
    color: var(--tertary);
}
body header nav ul li:first-child:hover{
    color: var(--tertary-off);
}
body header .account{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
body header .account svg{
    background-color: var(--primary);
    width: 50px;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    box-shadow: 0px 5px 5px var(--secondary-off);
    transition: var(--transition);
}
body header .account svg:hover{
    box-shadow: none;
}
body header .account>*{
    margin: 15px;
    cursor: pointer;
}
body header .account .notif{
    position: relative;
}
body header .account .notif span{
    position: absolute;
    top: -4px;
    right: 0;
    background-color: var(--tertary);
    font-size: 17px;
    padding: 2px 7px;
    border-radius: 50%;
}
body header .dropper{
    display: none;
    height: 35px;
    width: 35px;
    background-color: transparent;
    border: 1px solid var(--secondary);
    transition: var(--transition);
}
body header .dropper:hover{
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
}
.undropped{
    height: 72px;
    overflow: hidden;
}
.dropped{
    height: 355px;
    overflow: hidden;
}
body .main{
    background-image: url(./image/woman_up.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px;
    color: var(--primary);
}
body .main>div{
    height: 100%;
}
body .main>div:first-child{
    text-align: right;
}
body .main h1{
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 2px;
}
body .main a{
    font-size: 16px;
    font-weight: 400;
}
body .main>div:last-child{
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    width: 460px;
}
body .main>div:last-child form{
    height: 55px;
    width: 400px;
    background-color:transparent;
    box-shadow: 0px 2px 5px var(--secondary-off);
    border: 2px solid var(--primary);
    border-radius: 40px;
    margin: 0 0 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
body .main>div:last-child form input{
    height: 100%;
    width: 300px;
    background-color: transparent;
    border: none;
    text-indent: 50px;
}
::placeholder{
    color: var(--primary);
    font-size: 24px;
}
body .main>div:last-child form button{
    height: 100%;
    width: 100px;
    background-color: transparent;
    border: none;
}
body .main>div:last-child form button svg{
    width: 22px;
}
body .main>div:last-child h1{
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-around;
    color: var(--tertary);
}
body .main>div:last-child h1 span{
    color: var(--primary);
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 1px;
}

body .brief{
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
body .brief .family{
    height: 700px;
    width: 405px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}
body .brief .family .image{
    background-image: url(./image/family.jpg);
    background-position: center;
    background-size: 200%;
    height: 400px;
    width: 300px;
    border-radius: 0 50px;
    margin-bottom: 50px;
}
body .brief .family .specs{
    width: 285px;
}
body .brief div h2{
    margin-bottom:15px;
}
body .brief .family .cart{
    height: 45px;
    width: 300px;
    margin-top: 25px;
}
body .brief .man{
    height: 700px;
    width: 405px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}
body .brief .man .image{
    background-image: url(./image/white_jean.jpg);
    background-position: center;
    background-size: cover;
    height: 400px;
    width: 300px;
    margin-bottom: 50px;
}
body .brief .man .specs{
    width: 285px;
}
body .brief .man .cart{
    height: 45px;
    width: 300px;
    margin-top: 25px;
}
body .brief div .specs p:last-child{
    font-size: 11px;
}
body .brief .jeans{
    height: 700px;
    width: 405px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body .brief .jeans .image{
    background-image: url(./image/women_jeans.jpg);
    background-position: center;
    background-size: cover;
    height: 280px;
    width: 380px;
    border-radius: 50px 0;
    margin-bottom: 50px;
}
body .brief .jeans .specs{
    width: 380px;
}
body .brief div .specs p:last-child{
    font-size: 14px;
}
body .brief .jeans .cart{
    height: 45px;
    width: 380px;
    margin-top: 25px;
}
body .brief div .cart{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body .brief div .cart .buy{
    height: 30px;
    width: 90px;
    background-color: var(--tertary);
    border: none;
    color: var(--primary);
}
body .brief div .cart .add-cart{
    height: 100%;
    width: 45px;
    position: relative;
    background-color: var(--primary);
    border: 1px solid var(--secondary);
}
body .brief div .cart .add-cart svg{
    height: 35px;
    width: 35px;
    padding: 2px;
}
body .brief div .cart .add-cart .add-in{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 5px;
    background-color: var(--primary);
    padding: 2px;
}
body .brief div .image{
    transition: var(--transition);
}
body .brief div:hover .image{
    box-shadow: 0px 10px 10px var(--secondary-off);
}
body .brief div button{
    transition: var(--transition);
    cursor: pointer;
}
body .brief div button:first-child:hover{
    background-color: var(--tertary-off);
}
body .brief div .cart .add-cart:hover{
    box-shadow: 0px 10px 10px var(--secondary-off);
}

body .more{
    height: 200px;
    width: 100%;
    background-color: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-around;
}
body .more div{
    height: 150px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
}
body .more h3{
    color: var(--tertary);
    transition: var(--transition);
}
body .more p{
    transition: var(--transition);
}
body .more p:hover{
    color: var(--primary-off);
}
body footer{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}
body footer .conditions *{
    padding: 0 15px;
}
body footer .conditions a:first-child,
body footer .conditions a:nth-child(2){
    border-right: 1px solid;
}