

.carrinho-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 999; 
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

#carrinho-lateral {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px; /* Largura do carrinho */
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.carrinho-overlay.aberto {
    visibility: visible;
    opacity: 1;
}

#carrinho-lateral.aberto {
    transform: translateX(0); 
}


.carrinho-header-offcanvas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.carrinho-header-offcanvas h2 {
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.carrinho-header-offcanvas button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.carrinho-body {
    flex-grow: 1;
    overflow-y: auto; 
    padding: 20px;
}

.carrinho-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.carrinho-total-offcanvas {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-finalizar-compra-offcanvas {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-finalizar-compra-offcanvas:hover {
    background-color: #333;
}

#carrinho-itens-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carrinho-item-offcanvas {
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px dotted #ccc;
}

.carrinho-item-offcanvas:last-child {
    border-bottom: none;
}

.carrinho-item-offcanvas img {
    width: 70px;
    height: 100px;
    object-fit: cover;
    margin-right: 15px;
    background-color: #f7f7f7;
}

.carrinho-item-offcanvas .item-detalhes {
    flex-grow: 1;
}

.item-nome-offcanvas {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.item-preco-offcanvas {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
}

.item-acoes input {
    width: 40px;
    text-align: center;
    margin-right: 10px;
    padding: 5px;
    border: 1px solid #ccc;
}

.item-acoes button {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    font-size: 12px;
}

.carrinho-vazio {
    text-align: center;
    color: #999;
    padding: 50px 0;
}