/* Estilos para o carrinho de compras */
.cart-container {
    display: none; /* Inicialmente escondido */
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ededed;
    padding: 10px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.cart-container.open {
    right: 0;
    display: block; /* Mostrar quando aberto */
}

.cart-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 25px;
    text-align: right;
}

.close-btn {
    float: left;
    cursor: pointer;
}

.cart-items {
    margin-top: 10px;
}


.cart-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc; /* Opcional: adiciona uma linha separadora entre os itens */
    padding-bottom: 10px; /* Opcional: adiciona um espaçamento na parte inferior do item */
    flex-direction: row-reverse;
}


.item-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-left: 10px;
}


.item-image {
    width: 50px; /* Ajuste conforme necessário */
    height: 50px; /* Ajuste conforme necessário */
}


.cart-item-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.item-name {
    margin-top: 5px;
}

.item-price {
    font-weight: bold;
}

.total-amount {
    margin-top: 10px;
    font-weight: bold;
}

.item-quantity {
    width: 50px;
    text-align: right;
    background-color: #606C38;
    color: #FEFAE0;
    border-radius: 5px;
}

.btn-remove {
    background-color: #606C38;
    color: white;
    padding: 4px 9px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}


.continuar-comprando {
    cursor: pointer;
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
    font-size: 22px;
    margin-left: 10%;
}
