:root {
    --branco: #ffff;
    --gelo: #f1f1f1;
    --verde: #19c463;
    --preto: #2a2a2a;
}

.nav-top.cart {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: var(--branco);
    padding: 10px 0px;
}

.nav-top.cart a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gelo);
    border-radius: 50%;
    color: var(--preto)
}


.nav-top.cart a:first-child {
    margin-left: 20px;
}

.nav-top.cart a:last-child {
    margin-right: 20px;
}
.bottom-info {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #ccc;
    padding: 15px;
    z-index: 1000;
    box-sizing: border-box;
  }
  
  .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  
  .label {
    font-weight: bold;
  }
  
  .value {
    color: #666;
  }
  
  .value.link {
    color: #007BFF;
    cursor: pointer;
    text-decoration: underline;
  }
  
  .buy-button {
    width: 100%;
    padding: 10px;
    background-color: #19c463;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
  }
  
  .buy-button:hover {
    background-color: #0056b3;
  }
  
#listaCarrinho {
    display: flex;
    flex-flow: column wrap;
    margin-top: 20px;
    padding-bottom: 280px;
}

.item-carrinho {
    display: flex;
    align-items: center;
    width: 90%;
    height: 120px;
    padding: 10px 0px;
    /* background: blue; */
    margin: auto;
    border-bottom: 1px solid var(--gelo);
}

.price-container {
    display: flex;
    align-items: center;
}

#valorVariacao {
    margin-right: 5px; /* Espaço entre o preço e o botão "x" */
}

.remover-variacao {
    background: none;
    border: none;
    color: red;
    font-size: 18px;
    cursor: pointer;
}

.remover-variacao:hover {
    color: darkred;
}

.area-img {
    flex: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gelo);
    border-radius: 20px;
}

.area-img img {
    max-width: 120px;
    height: 120px;
    object-fit: contain;
}

.area-details {
    flex: 70%;
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    height: 100%;
}

.sup {
    width: 90%;
    /* background: red; */
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.name-prod {
    font-weight: 500;
    font-size: 16px;
    margin-left: 15px;
    max-width: 250px;
    /* border: 1px solid black; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delete-item {
    font-size: 18px;
    color: #9e9e9e;
    margin-right: 10px;
}

.middle span {
    color: gray;
    margin-left: 15px;
}

.preco-quantidade {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: blue; */
    flex-flow: row nowrap;
}

.preco-quantidade span {
    flex: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
}

.count {
    flex: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.minus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: gray;
    background: var(--branco);
    border: 1px solid var(--gelo);
    border-radius: 5px;
    font-size: 16px;
}

.qtd-item {
    width: 25px;
    text-align: center;
    background: var(--branco) !important;
}

.plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--verde);
    background: var(--branco);
    border: 1px solid var(--verde);
    border-radius: 5px;
    font-size: 16px;
}

.flex-100 {
    flex: 1;
    text-align: center;
}

.w-80 {
    width: 80%;
    padding: 8px 0px;
}

#totais {
    flex-direction: column;
}

.bd-bottom {
    border-bottom: 1px solid var(--gelo);
}


.blurred {
    filter: blur(5px);
}
.custo-container {
    display: flex;
    align-items: center;
}
#toggleCusto {
    cursor: pointer;
    margin-right: 4px;
    font-size: 18px;
    color:rgb(78, 78, 78);
}