*{
    font-family: "Poppins";
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--primary);
    text-decoration: none;
}

.header{width: 100%;}

main{
    background-color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 4;
    overflow-x: hidden;
}

.intro{
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
}

.intro div:nth-child(1){
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-icon{margin-right: 1rem;}

.intro div div{display: flex;}

span{font-weight: 700;
    font-size: 26px;
}

.intro div div:last-child{
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 1px 3px 4px;
    border-radius: 15px;
    padding: .5rem .8rem;
    gap: 3px;
    display: flex;
    align-items: center;
}

.intro div div:last-child i{
    color: var(--bg-yellow);
}

.intro .clock{
    margin-right: 4rem;
    gap: 3px;
    padding: .5rem;
    color: var(--green);
}

.line{
    width: 100%;
    background-color: #c4cadb;
    height: 1px;
}


nav ul{
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0 10px;
    overflow-x: scroll;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

nav ul li{
    padding:  .2rem .7rem;
    border-radius: 15px;
    border: rgba(149, 157, 165, 0.5) 1px solid;
}

.selected{
    border: var(--bg-yellow) 1px solid;
    background-color: var(--bg-yellow);
    color: white;
}

.light{
    color: var(--primary-light);
}

.product-list{margin-bottom: 2rem;}

.product{
    display: flex;
    margin: 2rem 1rem;
    background-color: white;
}

.product:hover{filter: brightness(95%);}

.product img{
    height: 5rem;
    background-color: #7e839228;
    border-radius: 15px;
}

.sticky{
    position: fixed;
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    box-shadow: 0 -2px 10px 1px #7e839221;
    bottom: 1px;
}

.submit-btn{
    background-color: var(--bg-red);
    color: white;
    padding: 2px 1.4rem;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 20px;
}

h3{margin: 0 1rem;}

.bg-sacola{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 30;
    display: block;
    background: #32323225;
    overflow-x: hidden;
    top: 0;
    display: none;
}

.sacola{
    top: 0;
    overflow-x: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8rem;
    position: absolute;
    background-color: white;
    margin-left: 2rem;
    z-index: 99;
    padding: 2rem;
    display: none;
}

.sacola .item{
    display: flex;
    gap: 25px;
}

.sacola .item img{height: 5rem;}

.sacola .delete{
    min-height: 2rem;
    min-width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border-radius: 10px;
    background-color: white;
    font-size: 18px;
    font-weight: 300;
    border: var(--primary-light) 1px solid;
}

.sacola .delete:hover{
    border: #d52a1e2e 1px solid;
    background-color: #d52a1e2e;
    color: white;
    transition: .2s all ease-in-out;
}

.selection{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selection button{
    border: var(--primary-light) 1px solid;
    padding: .25rem .8rem;
    border-radius: 10px;
    background-color: white;
    font-size: 18px;
    font-weight: 500;
}

.selection button:hover{
    border: var(--bg-red) 1px solid;
    background-color: var(--bg-red);
    color: white;
    transition: .2s all ease-in-out;
}

.selection span{font-weight: 400;}

.bottom{width: 100%;}

.pricing{
    border: #7E83922e 1px solid;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .8rem;
    padding: 1rem;
    border-radius: 15px;
}

.subtotal{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 6rem;
}

.subtotal .normal{color: var(--primary-light);}

.finish{
    color: white;
    background-color: var(--bg-yellow);
    border: none;
    padding: .8rem 1rem;
    margin-top: 1rem;
    border-radius: 50px;
    width: 100%;
}

