/* Estilos para o carrinho lateral */
.carrinho-lateral {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 1050;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.carrinho-lateral.active {
    right: 0;
}

.carrinho-lateral-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carrinho-lateral-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.carrinho-lateral-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.carrinho-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}

/* Estilos para itens do carrinho */
.carrinho-item {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.carrinho-item:last-child {
    border-bottom: none;
}

/* Botão de continuar comprando */
#continuar-comprando {
    transition: all 0.2s ease;
}

#continuar-comprando:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 576px) {
    .carrinho-lateral {
        width: 100%;
        right: -100%;
    }
}
