* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}


.logo {
    position: relative;
    top: -50px;
    left: 45%;
    height: 200px;
    width: 200px;
}


.header {
    width: 35%;
    height: 40px;
    position: relative;
    left: 32%;
    top: -70px;
    border-top: 1px solid #8B8B8B;
    border-bottom: 1px solid #8B8B8B;
}



.navbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    padding-top: 5px;
}



.navbar a {
    text-decoration: none;
    font-size: 20px;

}

a:hover {
    color: #C48B21;
    transition: .4s;
}

.fodasse {
    color: #C48B21;
}




.carrinho {
    width: 40px;
    height: 40px;
    border: 1px solid #8B8B8B;
    position: relative;
    left: 67%;
    top: -110px;
}



#pesquisa {
    width: 450px;

    input {
        width: 450px;
        height: 35px;
        position: relative;
        right: 550px;
        top: 25px;

    }

    div {
        margin-top: -10px;
        margin-left: -100px;
        width: 35px;
        height: 35px;
        border: 1px solid #8B8B8B;
        border-left: 0;
    }

}



#login {
    width: 100px;
    height: 40px;
    position: relative;
    left: 75%;
    top: -150px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
}

.div1 {
    grid-row: span 2 / span 2;
}

a {
    color: black;
    font-size: 17px;
    text-decoration: none;
}





.shop {
    width: 150px;
    height: 55px;
    position: relative;
    top: -80px;
    left: 470px;
    border-bottom: 1px solid #8B8B8B;
    font-size: 28px;
    font-weight: 500;
    padding-top: 20px;
}

.texto {
    margin-left: 40%;
    font-size: 30px;
}

#carrinho {
    width: 520px;
    height: 650px;
    background-color: #F3F3F3;
    margin-left: 70%;
    margin-top: -150px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.445) 5.4px 5.4px 6.2px;



    div {
        width: 85%;
        height: 90px;
        background-color: #f3f3f3;
        margin-left: 40px;
        border-bottom: 1px solid #8B8B8B;
        font-size: 25px;
        display: flex;
        align-items: flex-end;
        justify-content: space-evenly;
        gap: 160px;


    }

    h1 {
        font-size: 20px;
        margin-top: 100px;
        font-weight: 400;
        margin-left: 40px;
    }

    textarea {
        width: 85%;
        height: 150px;
        margin-left: 40px;
        border-radius: 10px;
        border: 1px solid #8B8B8B;
        padding: 10px;
        font-size: 16px;
        resize: none;
    }

    .div1 {
        width: 85%;
        height: 70px;
        background-color: #C48B21;
        margin-left: 40px;
        padding-bottom: 20px;
        margin-top: 100px;
        border-radius: 20px;
        color: white;
        transition: 0.8s;
        cursor: pointer;
    }
    .div1:hover {
    transition: .8s;
    background-color: white;
    color: #C48B21;
    border: 1px solid #8B8B8B;
}
}