:root {
    --primary-color: #f1f4de;
    --secundary-color: #e07a5f;
    --terciary-color: #46725d;
    --text-color: #313349;
    --quarter-color: #f2cc8f;
}

* {
    font-family: 'Inter', sans-serif;
    padding: 0%;
    margin: 0%;
    font-style: none;
    list-style: none;
    text-decoration: none;
}

/*------------------------------------------------------PRODUTOS*/

#produtos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.produtosLayout {
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    margin: 50px 20px 50px 20px;
    padding: 50px;
    align-items: center;
}

.produtosLayout h3 {
    font-size: 32px;
    margin: 5px;
    color: var(--text-color);
}

.produtosLayout img {
    border-radius: 10px;
    height: 400px;
    transition: opacity 1s
}

.produtosLayout img:hover {
    opacity: 70%;
}

.produtosLayout button {
    margin: 10px;
    color: var(--text-color);
    background-color: transparent;
    width: 250px;
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: border-radius 1s;
}

.produtosLayout button:hover {
    border-radius: 50px;
    cursor: pointer;
}

.price {
    padding: 10px;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
}

/* ------------------------------------------------------MODAL CARRINHO */
#carrinhoModal {
    width: 298px;
    height: 484px;
    border: solid 2px var(--text-color);
    border-radius: 10px;
    background-color: var(--primary-color);
    top: 58px;
    left: 940px;
}

#mostraQuantidade{
    position: absolute;
    color: var(--secundary-color);
    z-index: 5;
    bottom: 42px;
    padding: 3px;
}

#carrinhoSuperior {
    margin: 10px;
    padding: 10px;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
}

#btnFechar {
    border: none;
    height: 24px;
    width: 24px;
    cursor: pointer;
    color: var(--text-color);
    background-color: transparent;
}

#btnFechar img {
    border: none;
    height: 24px;
    width: 24px;
    cursor: pointer;
    color: var(--text-color);
    background-color: transparent;
}

#produtosCarrinho {
    color: var(--text-color);
    padding: 9px 15px;
    width: 260px;
    display: flex;
    flex-direction: column;
}
.produtosCarrinho img {
    width: 50px;
    height: 50px;
    background-color: transparent;
}
.produtosCarrinho{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}
h3{
    margin-top: 20px;
}
.resultadoCarrinhoRender {
    color: var(--text-color);
}

#salvarCarrinho {
    width: 200px;
    height: 40px;
    font-size: 18px;
    background-color: var(--terciary-color);
    color: var(--primary-color);
    border: 2px solid var(--text-color);
    border-radius: 50px;
}

#limparCarrinho {
    width: 200px;
    height: 40px;
    font-size: 18px;
    background-color: var(--secundary-color);
    color: var(--primary-color);
    border: 2px solid var(--text-color);
    border-radius: 50px;
}

.positionCarrinho {
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}